Changeset: fa135440830a for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/fa135440830a
Modified Files:
        gdk/gdk_storage.c
Branch: Jul2021
Log Message:

Null pointer check first.


diffs (12 lines):

diff --git a/gdk/gdk_storage.c b/gdk/gdk_storage.c
--- a/gdk/gdk_storage.c
+++ b/gdk/gdk_storage.c
@@ -693,7 +693,7 @@ void
 BATmsync(BAT *b)
 {
        /* we don't sync views or if we're told not to */
-       if (GDKinmemory(b->theap->farmid) || isVIEW(b) || (GDKdebug & 
NOSYNCMASK))
+       if (isVIEW(b) || GDKinmemory(b->theap->farmid) || (GDKdebug & 
NOSYNCMASK))
                return;
        /* we don't sync transients */
        if (b->theap->farmid != 0 ||
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to