[svn-commits] tilghman: branch 1.6.2 r187051 - in /branches/1.6.2: ./ funcs/func_odbc.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Apr 8 12:13:24 CDT 2009


Author: tilghman
Date: Wed Apr  8 12:13:21 2009
New Revision: 187051

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

........
  r187050 | tilghman | 2009-04-08 12:08:43 -0500 (Wed, 08 Apr 2009) | 7 lines
  
  If the first column is empty, output a delimiter anyway.
  (closes issue #14848)
   Reported by: john8675309
   Patches: 
         20090408__bug14848.diff.txt uploaded by tilghman (license 14)
   Tested by: john8675309
........

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

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

Modified: branches/1.6.2/funcs/func_odbc.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/funcs/func_odbc.c?view=diff&rev=187051&r1=187050&r2=187051
==============================================================================
--- branches/1.6.2/funcs/func_odbc.c (original)
+++ branches/1.6.2/funcs/func_odbc.c Wed Apr  8 12:13:21 2009
@@ -585,7 +585,7 @@
 
 			ast_debug(2, "Got coldata of '%s'\n", ast_str_buffer(coldata));
 
-			if (buflen) {
+			if (x) {
 				buf[buflen++] = ',';
 			}
 




More information about the svn-commits mailing list