From 1fa0c79662d03b119378f75cf0f2892679f730cf Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 7 Dec 2015 20:01:03 +0900 Subject: [PATCH] e randr - fix leak of modes list in randr code this fixes a leak of the modes list in randr @fix --- src/bin/e_randr2.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/e_randr2.c b/src/bin/e_randr2.c index b1e46e853..c717a0448 100644 --- a/src/bin/e_randr2.c +++ b/src/bin/e_randr2.c @@ -813,7 +813,10 @@ again: { // one of the common modes matches the base config - we are ok if ((m->w == sbase->config.mode.w) && (m->h == sbase->config.mode.h)) - return; + { + modes = eina_list_free(modes); + return; + } } // find a common mode since current config doesn't match EINA_LIST_FOREACH(modes, l, m)