Commit c0641836 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

macosx/framework: Fix three leaks in VLCStreamOutput.

Pointed-out-by Mike Schrag <mschrag@mdimension.com>.
parent c0638a3a
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
[NSDictionary dictionaryWithObjectsAndKeys: [NSDictionary dictionaryWithObjectsAndKeys:
@"mp4", @"muxer", @"mp4", @"muxer",
@"file", @"access", @"file", @"access",
[filePath copy], @"destination", nil [[filePath copy] autorelease], @"destination", nil
], @"outputOptions", ], @"outputOptions",
nil nil
] ]
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
[NSDictionary dictionaryWithObjectsAndKeys: [NSDictionary dictionaryWithObjectsAndKeys:
@"mp4", @"muxer", @"mp4", @"muxer",
@"file", @"access", @"file", @"access",
[filePath copy], @"destination", nil [[filePath copy] autorelease], @"destination", nil
], @"outputOptions", ], @"outputOptions",
nil nil
] ]
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
[NSDictionary dictionaryWithObjectsAndKeys: [NSDictionary dictionaryWithObjectsAndKeys:
@"ps", @"muxer", @"ps", @"muxer",
@"file", @"access", @"file", @"access",
[filePath copy], @"destination", nil [[filePath copy] autorelease], @"destination", nil
], @"outputOptions", ], @"outputOptions",
nil nil
] ]
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
[NSDictionary dictionaryWithObjectsAndKeys: [NSDictionary dictionaryWithObjectsAndKeys:
@"mpeg", @"muxer", @"mpeg", @"muxer",
@"file", @"access", @"file", @"access",
[filePath copy], @"destination", nil [[filePath copy] autorelease], @"destination", nil
], @"outputOptions", ], @"outputOptions",
nil nil
] ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment