summaryrefslogtreecommitdiff
path: root/libsoup/soup-headers.h
diff options
context:
space:
mode:
authorAlex Graveley <alex@ximian.com>2001-07-30 22:02:31 +0000
committerAlex Graveley <orph@src.gnome.org>2001-07-30 22:02:31 +0000
commitfdcae7db150243a7778b63526e15486df0e5955b (patch)
tree8d48b2279bd7a9e85d117766aa4ad39b671ab3ee /libsoup/soup-headers.h
parent344b02337904cdbfdca67897976e3bf74377369e (diff)
downloadlibsoup-fdcae7db150243a7778b63526e15486df0e5955b.tar.gz
Fix dangling pointer error where a resolved SoupAddress is passed to the
2001-07-30 Alex Graveley <alex@ximian.com> * src/soup-core/soup-socket.c (soup_address_new_cb): Fix dangling pointer error where a resolved SoupAddress is passed to the callback, and then realloc'd. * src/soup-core/soup-headers.c (soup_headers_parse_response): Don't require gchar const **status_phrase.
Diffstat (limited to 'libsoup/soup-headers.h')
-rw-r--r--libsoup/soup-headers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/soup-headers.h b/libsoup/soup-headers.h
index 1dfa3640..dd94b0ca 100644
--- a/libsoup/soup-headers.h
+++ b/libsoup/soup-headers.h
@@ -25,6 +25,6 @@ gboolean soup_headers_parse_response (gchar *str,
gint len,
GHashTable *dest,
guint *status_code,
- gchar const **status_phrase);
+ gchar **status_phrase);
#endif /*SOUP_HEADERS_H*/