Commit ad2a4c42 authored by Olivier Bertrand's avatar Olivier Bertrand

Parenthesize set null in SetValue_pval. Modified /storage/connect/value.cpp

parent e05920f7
......@@ -1350,7 +1350,7 @@ bool TYPVAL<PSZ>::SetValue_pval(PVAL valp, bool chktype)
char buf[64];
if (!(Null = valp->IsNull() && Nullable))
if (!(Null = (valp->IsNull() && Nullable)))
strncpy(Strp, valp->GetCharString(buf), Len);
else
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