Update of /cvsroot/monetdb/MonetDB4/src/modules/plain
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26050/src/modules/plain

Modified Files:
      Tag: MonetDB_4-20
        ascii_io.mx 
Log Message:
fixed null pointer dereference problem


Index: ascii_io.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB4/src/modules/plain/ascii_io.mx,v
retrieving revision 1.9
retrieving revision 1.9.4.1
diff -u -d -r1.9 -r1.9.4.1
--- ascii_io.mx 14 Jul 2007 18:54:16 -0000      1.9
+++ ascii_io.mx 14 Oct 2007 08:21:26 -0000      1.9.4.1
@@ -330,6 +330,8 @@
                BATmmap(b, STORE_MMAP, STORE_MMAP, STORE_MMAP);
        if (nr > BATTINY && adt)
                b = BATextend(b, nr);
+       if (b == NULL)
+               return b;
 
        /* disable all properties here */
        bm = BBP_cache(-b->batCacheid);


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to