aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-02-21 15:13:50 +0000
committerdrh <drh@noemail.net>2015-02-21 15:13:50 +0000
commit878acb32efa879e0b680cce08f63e65f89fa4f77 (patch)
tree84f334c6f75c248e10f9a92c17e3dae631f2c597 /src/printf.c
parent1ee4a2dd88663517c8dd980926af9e76f37c88fb (diff)
parent2da47d38691b74a6cfa2ce2e5bdce3bb7d8fc186 (diff)
downloadsqlite-878acb32efa879e0b680cce08f63e65f89fa4f77.tar.gz
sqlite-878acb32efa879e0b680cce08f63e65f89fa4f77.zip
Merge all recent trunk changes into the sessions branch.
FossilOrigin-Name: f36bb5fa5c5e3430808fe35d58f45559a216d341
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 8291002db..81efa057f 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -995,7 +995,7 @@ char *sqlite3_vsnprintf(int n, char *zBuf, const char *zFormat, va_list ap){
#ifdef SQLITE_ENABLE_API_ARMOR
if( zBuf==0 || zFormat==0 ) {
(void)SQLITE_MISUSE_BKPT;
- if( zBuf && n>0 ) zBuf[0] = 0;
+ if( zBuf ) zBuf[0] = 0;
return zBuf;
}
#endif