mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
fix a memory leak that occured under Windows
Original commit message from CVS: fix a memory leak that occured under Windows
This commit is contained in:
parent
0eadb80815
commit
6bf163742a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-08-10 Steve Lhomme <steve.lhomme@free.fr>
|
||||||
|
|
||||||
|
* gst/gstvalue.h:
|
||||||
|
fix a memory leak that occured under Windows
|
||||||
|
|
||||||
2004-08-10 Colin Walters <walters@redhat.com>
|
2004-08-10 Colin Walters <walters@redhat.com>
|
||||||
|
|
||||||
* gst/registries/gstxmlregistry.c (gst_xml_registry_open_func):
|
* gst/registries/gstxmlregistry.c (gst_xml_registry_open_func):
|
||||||
|
|
|
@ -1255,7 +1255,7 @@ gst_string_wrap (const char *s)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wrap)
|
if (!wrap)
|
||||||
return strdup (s);
|
return g_strdup (s);
|
||||||
|
|
||||||
e = d = g_malloc (len + 3);
|
e = d = g_malloc (len + 3);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue