Commit 454c6cf0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Revert "Fixed warning for uninitialized variable"

This reverts commit 14f739a5.
parent bd306466
......@@ -536,10 +536,8 @@ char *str_format_meta(input_thread_t *input, const char *s)
FILE *stream = open_memstream(&str, &len);
#elif defined( _WIN32 )
FILE *stream = vlc_win32_tmpfile();
str = NULL;
#else
FILE *stream = tmpfile();
str = NULL;
#endif
if (stream == NULL)
return NULL;
......
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