[asterisk-commits] tilghman: branch 1.6.1 r193007 - in /branches/1.6.1: ./ funcs/func_odbc.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu May 7 12:52:05 CDT 2009


Author: tilghman
Date: Thu May  7 12:52:01 2009
New Revision: 193007

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

........
  r193006 | tilghman | 2009-05-07 12:51:13 -0500 (Thu, 07 May 2009) | 7 lines
  
  Second result should not contain data from the first result.
  (closes issue #15039)
   Reported by: jims
   Patches: 
         20090506__issue15039.diff.txt uploaded by tilghman (license 14)
   Tested by: jims
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/funcs/func_odbc.c

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

Modified: branches/1.6.1/funcs/func_odbc.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/funcs/func_odbc.c?view=diff&rev=193007&r1=193006&r2=193007
==============================================================================
--- branches/1.6.1/funcs/func_odbc.c (original)
+++ branches/1.6.1/funcs/func_odbc.c Thu May  7 12:52:01 2009
@@ -391,6 +391,7 @@
 	}
 
 	for (y = 0; y < rowlimit; y++) {
+		buf[0] = '\0';
 		for (x = 0; x < colcount; x++) {
 			int i;
 			struct ast_str *coldata = ast_str_thread_get(&coldata_buf, 16);




More information about the asterisk-commits mailing list