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 @@
[NSDictionary dictionaryWithObjectsAndKeys:
@"mp4", @"muxer",
@"file", @"access",
[filePath copy], @"destination", nil
[[filePath copy] autorelease], @"destination", nil
], @"outputOptions",
nil
]
......@@ -102,7 +102,7 @@
[NSDictionary dictionaryWithObjectsAndKeys:
@"mp4", @"muxer",
@"file", @"access",
[filePath copy], @"destination", nil
[[filePath copy] autorelease], @"destination", nil
], @"outputOptions",
nil
]
......@@ -115,7 +115,7 @@
[NSDictionary dictionaryWithObjectsAndKeys:
@"ps", @"muxer",
@"file", @"access",
[filePath copy], @"destination", nil
[[filePath copy] autorelease], @"destination", nil
], @"outputOptions",
nil
]
......@@ -136,7 +136,7 @@
[NSDictionary dictionaryWithObjectsAndKeys:
@"mpeg", @"muxer",
@"file", @"access",
[filePath copy], @"destination", nil
[[filePath copy] autorelease], @"destination", nil
], @"outputOptions",
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