diff options
author | dynaflash <[email protected]> | 2010-03-26 15:03:11 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-03-26 15:03:11 +0000 |
commit | 9fe5c90432484ec753c19f7767408b007f243aae (patch) | |
tree | d6105716b4d2c03a63b01274d4cb1cb02e571312 /macosx/HBPreviewController.m | |
parent | ff1bc2964476e2cbf22ed3dd7aa249a9cc77368b (diff) |
MacGui: Add call to hb_global_close() upon application termination as per changes in rev 3170
- Also added a missing call to hb_close for the live preview encoding instance
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3171 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPreviewController.m')
-rw-r--r-- | macosx/HBPreviewController.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/macosx/HBPreviewController.m b/macosx/HBPreviewController.m index 2ca393cb9..764da459d 100644 --- a/macosx/HBPreviewController.m +++ b/macosx/HBPreviewController.m @@ -159,6 +159,8 @@ [fPicturePreviews release]; [fFullScreenWindow release]; + + hb_close(&fPreviewLibhb); [super dealloc]; } |