summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ext/soup/gstsouphttpsrc.c5
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf7f14ba..6138e5a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-02 Stefan Kost <ensonic@users.sf.net>
+
+ * ext/soup/gstsouphttpsrc.c:
+ Include stdlib to fix the build. Use g_free instead of free, libsoup
+ uses glib.
+
2008-05-02 Wim Taymans <wim.taymans@collabora.co.uk>
Patch by: j^ <j@bootlab.org>
diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c
index eb83647d..4d31fce4 100644
--- a/ext/soup/gstsouphttpsrc.c
+++ b/ext/soup/gstsouphttpsrc.c
@@ -89,6 +89,9 @@
#endif
#include <string.h>
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h> /* atoi() */
+#endif
#include <gst/gstelement.h>
#include <gst/gst-i18n-plugin.h>
#include <libsoup/soup.h>
@@ -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: