diff --git a/ChangeLog b/ChangeLog index cf7f14ba3a..6138e5a64a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-05-02 Stefan Kost + + * ext/soup/gstsouphttpsrc.c: + Include stdlib to fix the build. Use g_free instead of free, libsoup + uses glib. + 2008-05-02 Wim Taymans Patch by: j^ diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index eb83647dc0..4d31fce480 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -89,6 +89,9 @@ #endif #include +#ifdef HAVE_STDLIB_H +#include /* atoi() */ +#endif #include #include #include @@ -437,7 +440,7 @@ gst_soup_http_src_get_property (GObject * object, guint prop_id, char *proxy = soup_uri_to_string (src->proxy, FALSE); g_value_set_string (value, proxy); - free (proxy); + g_free (proxy); } break; case PROP_COOKIES: