Kaydet (Commit) 2abc4945 authored tarafından Sjoerd Mullender's avatar Sjoerd Mullender

Free was called with a struct as argument instead of a field from the

struct.
üst 4eba0c9b
......@@ -93,7 +93,7 @@ dbm_length(dp)
for ( key=gdbm_firstkey(dp->di_dbm); key.dptr;
key = gdbm_nextkey(dp->di_dbm,okey)) {
size++;
if(okey.dsize) free(okey);
if(okey.dsize) free(okey.dptr);
okey=key;
}
dp->di_size = size;
......@@ -180,7 +180,7 @@ dbm_keys(dp, args)
if ( item == 0 )
return NULL;
addlistitem(v, item);
if(okey.dsize) free(okey);
if(okey.dsize) free(okey.dptr);
okey=key;
}
return v;
......
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