Update of /cvsroot/monetdb/sql/src/backends/monet5/merovingian
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14051

Modified Files:
        properties.c 
Log Message:
painful off by one

U properties.c
Index: properties.c
===================================================================
RCS file: /cvsroot/monetdb/sql/src/backends/monet5/merovingian/properties.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- properties.c        17 Sep 2009 20:07:05 -0000      1.12
+++ properties.c        25 Sep 2009 13:43:30 -0000      1.13
@@ -102,7 +102,7 @@
 
        p = *buf = malloc(sizeof(char) * len + 1);
        memcpy(p, MEROPROPFILEHEADER, sizeof(MEROPROPFILEHEADER));
-       p += sizeof(MEROPROPFILEHEADER);
+       p += sizeof(MEROPROPFILEHEADER) - 1;
        w = ckv;
        while (w->key != NULL) {
                if (w->val != NULL)


------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to