Changeset: 2e1268f95684 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/2e1268f95684 Modified Files: monetdb5/modules/atoms/json.c Branch: default Log Message:
Merged with Oct2020 diffs (13 lines): diff --git a/monetdb5/modules/atoms/json.c b/monetdb5/modules/atoms/json.c --- a/monetdb5/modules/atoms/json.c +++ b/monetdb5/modules/atoms/json.c @@ -186,7 +186,8 @@ JSONtoString(str *s, size_t *len, const } if (external) { assert(*len >= strlen("nil") + 1); - return (ssize_t) strcpy(*s, "nil"); + strcpy(*s, "nil"); + return 3; } assert(*len >= strlen(str_nil) + 1); strcpy(*s, str_nil); _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list