Skip to content

Commit 8f5dcfb

Browse files
committed
Memory leak suspected compile error
1 parent 366d960 commit 8f5dcfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

informix_auditing/audit_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ DPRINTF("logger", 90, ("delete: colname: (0x%x) [%s]", pcolname, pcolname));
342342
//printf("%s",pcast);
343343
char *bufdatdelval = escapecharjson(pcast);
344344
sprintf(&buffer[posi], "\"%s\" : \"%s\"", pcolname, bufdatdelval);
345-
free(bufdatdelval)
345+
free(bufdatdelval);
346346
if (strcmp("unsupportedtype", pcast) == 0) {
347347
strcpy(uniquedatatype, "true");
348348
}

0 commit comments

Comments
 (0)