diff options
Diffstat (limited to 'gst-libs/gst/riff/riffutil.c')
-rw-r--r-- | gst-libs/gst/riff/riffutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/riff/riffutil.c b/gst-libs/gst/riff/riffutil.c index b363ddb8..e4c134fb 100644 --- a/gst-libs/gst/riff/riffutil.c +++ b/gst-libs/gst/riff/riffutil.c @@ -32,7 +32,7 @@ gulong gst_riff_fourcc_to_id(gchar *fourcc) { } gchar *gst_riff_id_to_fourcc(gulong id) { - gchar *fourcc = (gchar *)g_malloc(5); + static gchar fourcc[5]; g_return_val_if_fail(fourcc != NULL, NULL); |