summaryrefslogtreecommitdiffstats
path: root/test-sqlite3_errstr.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-05 12:50:52 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-05 12:50:52 +0000
commite78c9199f3e64722b422088627cfd89d0a1dd5cf (patch)
treeff1e1e1117021c43b8b2d196c6794527e6b64d36 /test-sqlite3_errstr.c
parentd2b3f0c9cdd5730d0a2af274b777dd8d1ad53d57 (diff)
downloadmandoc-e78c9199f3e64722b422088627cfd89d0a1dd5cf.tar.gz
Since old SQLite versions do not have sqlite3_errstr(),
provide a dummy fallback implementation. Do not bother to decode the error, SQLite error codes are not useful enough for that to be worthwhile. Note that using sqlite3_errmsg(db) would be a bad idea: On malloc() failure, db is NULL, which would cause a segfault. Issue noticed by kristaps@.
Diffstat (limited to 'test-sqlite3_errstr.c')
-rw-r--r--test-sqlite3_errstr.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-sqlite3_errstr.c b/test-sqlite3_errstr.c
new file mode 100644
index 00000000..041bf628
--- /dev/null
+++ b/test-sqlite3_errstr.c
@@ -0,0 +1,8 @@
+#include <string.h>
+#include <sqlite3.h>
+
+int
+main(void)
+{
+ return(strcmp(sqlite3_errstr(SQLITE_OK), "not an error"));
+}