pike.git/
lib/
modules/
Sql.pmod/
pgsql.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2017-06-27
2017-06-27 12:42:01 by Stephen R. van den Berg <srb@cuci.nl>
2f3ce2f86bc138a9712a81397c87caadb2b010ef (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
pgsql: Suppress spurious message if there are no pending messages.
1285:
*/ if (err || (err = catch(errstring = error(1)))) werror(describe_backtrace(err));
-
else if (sizeof(errstring))
+
else if (
errstring &&
sizeof(errstring))
werror(errstring); }