Skip to content

Commit d06dbaf

Browse files
committed
Memory leak suspected log compile error
1 parent 8f5dcfb commit d06dbaf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

informix_auditing/audit_util.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ mi_string *do_castl(MI_CONNECTION *conn, MI_DATUM *datum,
6767
DPRINTF("logger",95,("-- typeName=%s --",srcType));
6868
printf("-- typeName=%s --",srcType);
6969
if ((strcmp("blob", srcType) == 0) || (strcmp("clob", srcType) == 0) || (strcmp("text", srcType) == 0) || (strcmp("byte", srcType) == 0)) {
70+
printf("skiping data read\n");
7071
return("unsupportedtype");
7172
}
7273
else{
@@ -111,8 +112,8 @@ mi_string *do_castl(MI_CONNECTION *conn, MI_DATUM *datum,
111112
tdesc = mi_type_typedesc(conn, typeid);
112113
precision = mi_type_precision(tdesc);
113114

114-
printf("rputine read initiated \n");
115-
printf("rputine read initiated %ld\n",collen);
115+
//printf("rputine read initiated \n");
116+
//printf("rputine read initiated %ld\n",collen);
116117
new_datum = mi_routine_exec(conn, fn, &ret, datum, collen, precision, fp);
117118
printf("routine read completed \n");
118119
pbuf = mi_lvarchar_to_string(new_datum);

0 commit comments

Comments
 (0)