Changeset: cbbd1e8d1341 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cbbd1e8d1341
Modified Files:
        gdk/gdk_system.c
Branch: Oct2020
Log Message:

Missed a return value.


diffs (12 lines):

diff --git a/gdk/gdk_system.c b/gdk/gdk_system.c
--- a/gdk/gdk_system.c
+++ b/gdk/gdk_system.c
@@ -342,7 +342,7 @@ void *
 MT_thread_getdata(void)
 {
        if (threadslot == TLS_OUT_OF_INDEXES)
-               return;
+               return NULL;
        struct winthread *w = TlsGetValue(threadslot);
 
        return w ? w->data : NULL;
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to