diff options
author | drh <> | 2023-12-02 14:55:46 +0000 |
---|---|---|
committer | drh <> | 2023-12-02 14:55:46 +0000 |
commit | 82136d90f868f01c4573b52802f6e2b00bb20f45 (patch) | |
tree | 3b838274a93ca88c475a8420aab98bbf839f965f /src | |
parent | f0b8b16317a0449d00d45246a2d78598e8322448 (diff) | |
download | sqlite-82136d90f868f01c4573b52802f6e2b00bb20f45.tar.gz sqlite-82136d90f868f01c4573b52802f6e2b00bb20f45.zip |
Minor fix to the header comment on jsonXlateTextToBlob().
FossilOrigin-Name: c3677ba410208c07b711f5f526eb5cf039a8eee49f632c7ae04fa55cdfbb9058
Diffstat (limited to 'src')
-rw-r--r-- | src/json.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json.c b/src/json.c index 9d6554f41..095ae870b 100644 --- a/src/json.c +++ b/src/json.c @@ -1235,7 +1235,7 @@ static int jsonIs4HexB(const char *z, int *pOp){ ** or one of the following special result codes: ** ** 0 End of input -** -1 Syntax error +** -1 Syntax error or OOM ** -2 '}' seen \ ** -3 ']' seen \___ For these returns, pParse->iErr is set to ** -4 ',' seen / the index in zJson[] of the seen character |