Changeset: 4e4b5cdf34ce for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/4e4b5cdf34ce
Modified Files:
        monetdb5/mal/mal_instruction.c
Branch: default
Log Message:

Merge with Aug2024 branch.


diffs (22 lines):

diff --git a/.hgtags b/.hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -836,3 +836,4 @@ dce400b68239412b1835fb28bd183bf50f5e8692
 ab5d60be21cd1c65e9de476d71a86c2995f70785 Aug2024_5
 ab5d60be21cd1c65e9de476d71a86c2995f70785 Aug2024_SP1_release
 30e6380820842b9e0325536eb22d7cb3843ab095 Aug2024_7
+30e6380820842b9e0325536eb22d7cb3843ab095 Aug2024_SP2_release
diff --git a/monetdb5/mal/mal_instruction.c b/monetdb5/mal/mal_instruction.c
--- a/monetdb5/mal/mal_instruction.c
+++ b/monetdb5/mal/mal_instruction.c
@@ -611,7 +611,9 @@ newVariable(MalBlkPtr mb, const char *na
                return -1;
        }
        n = mb->vtop;
-       mb->var[n].name = NULL;
+       mb->var[n] = (VarRecord) {
+               .name = NULL,
+       };
        if (name && len > 0) {
                char *nme = GDKmalloc(len+1);
                if (!nme) {
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to