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();