From 55d2890aae8382d0c208edec9db0ebc039b8b3b2 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 22 Jun 2018 17:18:48 +1000 Subject: [PATCH] quirks: free the dt string Not sure how that got through the valgind test before... Signed-off-by: Peter Hutterer --- src/quirks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/quirks.c b/src/quirks.c index 86239c67..c74ecbb4 100644 --- a/src/quirks.c +++ b/src/quirks.c @@ -1059,6 +1059,7 @@ quirks_context_unref(struct quirks_context *ctx) } free(ctx->dmi); + free(ctx->dt); free(ctx); return NULL;