From b20b16d92241a8abb5edcbc80b726f989882190c Mon Sep 17 00:00:00 2001 From: "bunam.jeon" Date: Mon, 3 Sep 2012 21:33:22 +0900 Subject: [PATCH] Fixed [S1-8217] BS occurs after selecting download linked filed in facebook app. [Title] Fixed [S1-8217] BS occurs after selecting download linked filed in facebook app. [Issue#] S1-8217 [Problem] BS occurs [Cause] not initializtion didStartDownload callback [Solution] Initialization didStartDownload callback Change-Id: I7ef785c14a9f6b10d53e5d473fad96958fc6e7bd --- Source/WebKit2/UIProcess/API/efl/ewk_context.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp b/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp index 1b286b5..070ee58 100755 --- a/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp +++ b/Source/WebKit2/UIProcess/API/efl/ewk_context.cpp @@ -79,6 +79,8 @@ struct _Ewk_Context { #endif this->messageFromInjectedBundle.callback = 0; this->messageFromInjectedBundle.userData = 0; + this->didStartDownload.callback = 0; + this->didStartDownload.userData = 0; } }; -- 2.7.4