Changeset: b2d4d9355641 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b2d4d9355641
Modified Files:
        monetdb5/mal/mal_listing.c
Branch: headless
Log Message:

VALformat expects a ValPtr, not a pointer to the value.


diffs (12 lines):

diff --git a/monetdb5/mal/mal_listing.c b/monetdb5/mal/mal_listing.c
--- a/monetdb5/mal/mal_listing.c
+++ b/monetdb5/mal/mal_listing.c
@@ -440,7 +440,7 @@
                                advance(t,base,len);
                                VALformat(&cv, &stk->stk[getArg(p, i)]);
                        } else
-                               VALformat(&cv, getVarValue(mb, getArg(p, i)));
+                               VALformat(&cv, getVarConstant(mb, getArg(p, 
i)));
                        if ( cv && strlen(cv) > len - (t - s)) {
                                char *ns = (char *) GDKmalloc(len = strlen(cv) 
+ len + 2);
 
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to