Commit fa5f26b4 authored by Andrew Hutchings's avatar Andrew Hutchings Committed by Daniel Black

MDEV-29578 Fix CONNECT build warnings

Fix a couple of build warnings that fire with CONNECT engine.
parent 055cb3fc
...@@ -3571,14 +3571,14 @@ char *bson_item_merge(UDF_INIT *initid, UDF_ARGS *args, char *result, ...@@ -3571,14 +3571,14 @@ char *bson_item_merge(UDF_INIT *initid, UDF_ARGS *args, char *result,
if (!CheckMemory(g, initid, args, 2, false, false, true)) { if (!CheckMemory(g, initid, args, 2, false, false, true)) {
JTYP type; JTYP type;
BJNX bnx(g); BJNX bnx(g);
PBVAL jvp, top = NULL; PBVAL jvp = NULL, top = NULL;
PBVAL jsp[2] = {NULL, NULL}; PBVAL jsp[2] = {NULL, NULL};
for (int i = 0; i < 2; i++) { for (int i = 0; i < 2; i++) {
jvp = bnx.MakeValue(args, i, true); jvp = bnx.MakeValue(args, i, true);
if (i) { if (i) {
if (jvp->Type != type) { if (jvp && (jvp->Type != type)) {
PUSH_WARNING("Argument types mismatch"); PUSH_WARNING("Argument types mismatch");
goto fin; goto fin;
} // endif type } // endif type
...@@ -5722,14 +5722,14 @@ char *bbin_item_merge(UDF_INIT *initid, UDF_ARGS *args, char *result, ...@@ -5722,14 +5722,14 @@ char *bbin_item_merge(UDF_INIT *initid, UDF_ARGS *args, char *result,
if (!CheckMemory(g, initid, args, 2, false, false, true)) { if (!CheckMemory(g, initid, args, 2, false, false, true)) {
JTYP type; JTYP type;
BJNX bnx(g); BJNX bnx(g);
PBVAL jvp, top = NULL; PBVAL jvp = NULL, top = NULL;
PBVAL jsp[2] = {NULL, NULL}; PBVAL jsp[2] = {NULL, NULL};
for (int i = 0; i < 2; i++) { for (int i = 0; i < 2; i++) {
if (i) { if (i) {
jvp = bnx.MakeValue(args, i, true); jvp = bnx.MakeValue(args, i, true);
if (jvp->Type != type) { if (jvp && (jvp->Type != type)) {
PUSH_WARNING("Argument types mismatch"); PUSH_WARNING("Argument types mismatch");
goto fin; goto fin;
} // endif type } // endif type
......
...@@ -244,7 +244,7 @@ PQRYRES DBFColumns(PGLOBAL g, PCSZ dp, PCSZ fn, PTOS topt, bool info) ...@@ -244,7 +244,7 @@ PQRYRES DBFColumns(PGLOBAL g, PCSZ dp, PCSZ fn, PTOS topt, bool info)
int rc, type, len, field, fields; int rc, type, len, field, fields;
bool bad, mul; bool bad, mul;
PCSZ target, pwd; PCSZ target, pwd;
DBFHEADER mainhead, *hp; DBFHEADER mainhead, *hp = NULL;
DESCRIPTOR thisfield, *tfp; DESCRIPTOR thisfield, *tfp;
FILE *infile = NULL; FILE *infile = NULL;
UNZIPUTL *zutp = NULL; UNZIPUTL *zutp = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment