From 148faed2946b945d49174bccb20c745dd37944f9 Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Thu, 27 Jun 2013 10:03:54 +0900 Subject: [PATCH] Fix the prevent issue. [model] Redwood [binary_type] AP [customer] Docomo/Orange/Open [issue#] CID 62250 [problem] Use after free. Very specific case. [cause] Use after free [solution] Fix it, reset used pointer. [team] HomeTF [request] [horizontal_expansion] Change-Id: I3145f334de72b32945e4624c860c789b78509109 --- icon_src/script_handler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/icon_src/script_handler.c b/icon_src/script_handler.c index 0571558..67b3dae 100644 --- a/icon_src/script_handler.c +++ b/icon_src/script_handler.c @@ -1324,6 +1324,7 @@ HAPI int script_handler_parse_desc(Evas_Object *edje, const char *descfile) } consuming_parsed_block(edje, lineno, block); + block = NULL; state = UNKNOWN; break; -- 2.7.4