Try to fix invalid free 2

This commit is contained in:
Quentin Dufour 2019-04-04 10:44:20 +02:00
parent 0d62fca3d4
commit f72d528bef

View file

@ -218,6 +218,7 @@ void notify_read(struct evt_core_ctx* ctx, struct algo_ctx* app_ctx) {
}
void naive_free_simple(void* v) {
free(v);
GQueue* g = v;
g_queue_free (g);
}