* hostio.c (require_data): Free *data, not data.
This commit is contained in:
parent
66b3e8dabc
commit
8040bd496a
@ -1,3 +1,7 @@
|
||||
2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* hostio.c (require_data): Free *data, not data.
|
||||
|
||||
2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* hostio.c (require_data): Use free, not xfree.
|
||||
|
@ -135,7 +135,7 @@ require_data (char *p, int p_len, char **data, int *data_len)
|
||||
|
||||
if (escaped)
|
||||
{
|
||||
free (data);
|
||||
free (*data);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user