fix memory leak in error path
This commit is contained in:
parent
2389a150ac
commit
1544cf006c
@ -46,9 +46,12 @@ int cdb_make_addend(struct cdb_make *c,unsigned long int keylen,unsigned long in
|
|||||||
head->hp[head->num].p = c->pos;
|
head->hp[head->num].p = c->pos;
|
||||||
++head->num;
|
++head->num;
|
||||||
++c->numentries;
|
++c->numentries;
|
||||||
if (posplus(c,8) == -1) return -1;
|
if (posplus(c,8) == -1 ||
|
||||||
if (posplus(c,keylen) == -1) return -1;
|
posplus(c,keylen) == -1 ||
|
||||||
if (posplus(c,datalen) == -1) return -1;
|
posplus(c,datalen) == -1) {
|
||||||
|
free(head);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user