diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2020-10-24 10:08:07 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2020-10-24 10:08:07 +0200 |
commit | 06af03677cf5ad26b733d6250305d75412ed9201 (patch) | |
tree | 423e4ddfc890c45c57872153e305de4928f67748 /storage/connect/plgxml.cpp | |
parent | 94b493571a8ba8f30c97a5c30fc641171ca48e8a (diff) | |
parent | 671d9b6c611be423246b562878da2a5788cc327d (diff) | |
download | mariadb-git-06af03677cf5ad26b733d6250305d75412ed9201.tar.gz |
Merge remote-tracking branch 'connect/10.1' into 10.1
Diffstat (limited to 'storage/connect/plgxml.cpp')
-rw-r--r-- | storage/connect/plgxml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/plgxml.cpp b/storage/connect/plgxml.cpp index f3d3a010266..8c5cc261899 100644 --- a/storage/connect/plgxml.cpp +++ b/storage/connect/plgxml.cpp @@ -49,7 +49,7 @@ bool XMLDOCUMENT::InitZip(PGLOBAL g, PCSZ entry) { #if defined(ZIP_SUPPORT) bool mul = (entry) ? strchr(entry, '*') || strchr(entry, '?') : false; - zip = new(g) UNZIPUTL(entry, mul); + zip = new(g) UNZIPUTL(entry, NULL, mul); return zip == NULL; #else // !ZIP_SUPPORT sprintf(g->Message, MSG(NO_FEAT_SUPPORT), "ZIP"); |