aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config.h.post
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
commit99660883f075bacb16d7284523a36f8e6c69a665 (patch)
tree424e175eb4f2af8a990f03bc597bc819f6642bec /config.h.post
parent3269dd3e704bc9880455b95bb67a490b5b503216 (diff)
downloadmandoc-99660883f075bacb16d7284523a36f8e6c69a665.tar.gz
mandoc-99660883f075bacb16d7284523a36f8e6c69a665.tar.zst
mandoc-99660883f075bacb16d7284523a36f8e6c69a665.zip
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 'config.h.post')
-rw-r--r--config.h.post3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.post b/config.h.post
index 07b53415..e95f5f53 100644
--- a/config.h.post
+++ b/config.h.post
@@ -23,6 +23,9 @@ extern char *suboptarg;
#ifndef HAVE_REALLOCARRAY
extern void *reallocarray(void *, size_t, size_t);
#endif
+#ifndef HAVE_SQLITE3_ERRSTR
+extern const char *sqlite3_errstr(int);
+#endif
#ifndef HAVE_STRCASESTR
extern char *strcasestr(const char *, const char *);
#endif