[Rasta-commits] jlbec commits r222 - in trunk: . clrasta

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Fri Apr 23 13:23:59 CDT 2004


Author: jlbec
Date: 2004-04-23 12:23:57 -0500 (Fri, 23 Apr 2004)
New Revision: 222

Modified:
   trunk/ChangeLog
   trunk/clrasta/clrasta.c
Log:
stupid list cancel bug

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2004-03-02 08:26:42 UTC (rev 221)
+++ trunk/ChangeLog	2004-04-23 17:23:57 UTC (rev 222)
@@ -1,3 +1,7 @@
+2004-04-23	Joel Becker	<joel.becker at oracle.com>
+
+	* clrasta/clrasta.c: Fix a stupid NULL bug in clr_query_list().
+
 2004-03-02	Joel Becker	<joel.becker at oracle.com>
 
 	* *.dtd: Add the ATTLIST for xmlns.

Modified: trunk/clrasta/clrasta.c
===================================================================
--- trunk/clrasta/clrasta.c	2004-03-02 08:26:42 UTC (rev 221)
+++ trunk/clrasta/clrasta.c	2004-04-23 17:23:57 UTC (rev 222)
@@ -1751,7 +1751,10 @@
         elem = g_list_next(elem);
     }
     if (*result)
+    {
         g_list_free(*result);  /* In/Out param */
+        *result = NULL;
+    }
 
     start = 0;
     done = FALSE;



More information about the Rasta-commits mailing list