summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2020-11-07 23:58:57 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2020-11-07 23:58:57 +0100
commit90405763cf71a18ae1c7556fe51e13feb5333e46 (patch)
tree81329bdb50dc82514db24a65c9541bd7f2fdc56c
parent8985933881e94374a10481aeb10714fd77470d48 (diff)
downloadmariadb-git-90405763cf71a18ae1c7556fe51e13feb5333e46.tar.gz
Re-fix compile error (sign-unsign) Modified filamtxt.cpp
-rw-r--r--storage/connect/json.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/json.cpp b/storage/connect/json.cpp
index 6fdb7e9c15c..5a7570567c8 100644
--- a/storage/connect/json.cpp
+++ b/storage/connect/json.cpp
@@ -1873,7 +1873,7 @@ PJSON SWAP::MptrJson(PJSON ojp) { // ojp is an offset
PJAR SWAP::MptrArray(PJAR ojar) {
PJAR jarp = (PJAR)MakePtr(Base, (size_t)ojar);
- jarp = (PJAR)new((long long)jarp) JARRAY(NULL);
+ jarp = (PJAR)new((long long)jarp) JARRAY(0);
if (jarp->First) {
for (int i = 0; i < jarp->Size; i++)