lmdb: catch non-LMDB negative errors before strerror
That should hopefully shut coverity up
This commit is contained in:
parent
37345921ec
commit
b6420e12a9
|
@ -1742,6 +1742,8 @@ mdb_strerror(int err)
|
|||
NULL, err, 0, ptr, MSGSIZE, (va_list *)buf+MSGSIZE);
|
||||
return ptr;
|
||||
#else
|
||||
if (err < 0)
|
||||
return "Invalid error code";
|
||||
return strerror(err);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue