[asterisk-commits] kpfleming: branch 1.6.2 r215165 - in /branches/1.6.2: ./ main/frame.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 1 15:00:28 CDT 2009


Author: kpfleming
Date: Tue Sep  1 15:00:25 2009
New Revision: 215165

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215165
Log:
Merged revisions 215161 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r215161 | kpfleming | 2009-09-01 14:50:48 -0500 (Tue, 01 Sep 2009) | 3 lines
  
  Ensure that frame dumps of AST_CONTROL_T38_PARAMETERS frames are properly
  decoded.
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/frame.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/main/frame.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/main/frame.c?view=diff&rev=215165&r1=215164&r2=215165
==============================================================================
--- branches/1.6.2/main/frame.c (original)
+++ branches/1.6.2/main/frame.c Tue Sep  1 15:00:25 2009
@@ -840,7 +840,7 @@
 			strcpy(subclass, "Unhold");
 			break;
 		case AST_CONTROL_T38_PARAMETERS:
-			if (f->datalen != sizeof(struct ast_control_t38_parameters *)) {
+			if (f->datalen != sizeof(struct ast_control_t38_parameters)) {
 				message = "Invalid";
 			} else {
 				struct ast_control_t38_parameters *parameters = f->data.ptr;




More information about the asterisk-commits mailing list