From: Jay Freeman (saurik) Date: Fri, 24 Jan 2014 23:08:26 +0000 (-0800) Subject: Fix a memory leak in the new foreground HTML view. X-Git-Tag: v0.9.4009~4 X-Git-Url: https://git.saurik.com/cydget.git/commitdiff_plain/a522309ca74d28a36b98006da43181aa26476534 Fix a memory leak in the new foreground HTML view. --- diff --git a/LockScreen.mm b/LockScreen.mm index 1572e5e..9a37507 100644 --- a/LockScreen.mm +++ b/LockScreen.mm @@ -1197,6 +1197,7 @@ static void $UIWebViewWebViewDelegate$webView$didClearWindowObject$forFrame$(UIW - (void) dealloc { [configuration_ release]; [background_ release]; + [foreground_ release]; [super dealloc]; }