May as well zero out queue data before free() just in case of illegal access afterwards
This commit is contained in:
parent
938c4ed349
commit
056cafdee1
@ -99,6 +99,7 @@ void
|
|||||||
free_queue(struct Queue *q)
|
free_queue(struct Queue *q)
|
||||||
{
|
{
|
||||||
if (q != NULL) {
|
if (q != NULL) {
|
||||||
|
empty_queue(q);
|
||||||
free(q);
|
free(q);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user