Commit df091237 authored by Olivier Bertrand's avatar Olivier Bertrand

Modified /storage/connect/value.cpp line 668

parent e99af2a3
...@@ -665,7 +665,7 @@ bool TYPVAL<TYPE>::SetValue_pval(PVAL valp, bool chktype) ...@@ -665,7 +665,7 @@ bool TYPVAL<TYPE>::SetValue_pval(PVAL valp, bool chktype)
if (chktype && Type != valp->GetType()) if (chktype && Type != valp->GetType())
return true; return true;
if (!(Null = valp->IsNull() && Nullable)) if (!(Null = (valp->IsNull() && Nullable)))
Tval = GetTypedValue(valp); Tval = GetTypedValue(valp);
else else
Reset(); Reset();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment