diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-22 14:37:43 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-01-22 14:37:43 +0000 |
commit | efaa7abf77373b95e8cbbed4f651d017975eb518 (patch) | |
tree | 84095af70d3cbdcd3115fe0315b539212eeb44a9 /gst-libs/gst/riff/riffutil.c | |
parent | 6fc1e27bd88db652d47ac0c2ab05688af7e891b0 (diff) | |
download | gst-plugins-bad-efaa7abf77373b95e8cbbed4f651d017975eb518.tar.gz gst-plugins-bad-efaa7abf77373b95e8cbbed4f651d017975eb518.tar.bz2 gst-plugins-bad-efaa7abf77373b95e8cbbed4f651d017975eb518.zip |
Think Sane Default
Original commit message from CVS:
Think Sane Default
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 e4c134fb..b363ddb8 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) { - static gchar fourcc[5]; + gchar *fourcc = (gchar *)g_malloc(5); g_return_val_if_fail(fourcc != NULL, NULL); |