From df091237a884dbc265cac36a361e70340366b3b1 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand Date: Thu, 20 Jul 2017 11:19:44 +0200 Subject: [PATCH] Modified /storage/connect/value.cpp line 668 --- storage/connect/value.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/connect/value.cpp b/storage/connect/value.cpp index 52230e0e17a..11298355d9d 100644 --- a/storage/connect/value.cpp +++ b/storage/connect/value.cpp @@ -665,7 +665,7 @@ bool TYPVAL::SetValue_pval(PVAL valp, bool chktype) if (chktype && Type != valp->GetType()) return true; - if (!(Null = valp->IsNull() && Nullable)) + if (!(Null = (valp->IsNull() && Nullable))) Tval = GetTypedValue(valp); else Reset();