diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-18 09:11:15 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-05-18 09:11:15 +0200 |
commit | 266fe2fe078833bc5489a3fddd970b9307a7bbfa (patch) | |
tree | 8e815a7eaa0b12935421966a7ab88c6120ca2ac9 | |
parent | 0790644bf8ccfbb1f09f4e7209fc18c2e97f10d8 (diff) |
Fixed return value bug in http_dorequest_url().
-rw-r--r-- | protocols/http_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/http_client.c b/protocols/http_client.c index 893ba551..46cb8b7b 100644 --- a/protocols/http_client.c +++ b/protocols/http_client.c @@ -98,7 +98,7 @@ void *http_dorequest_url( char *url_string, http_input_function func, gpointer d g_free( url ); g_free( request ); - return NULL; + return ret; } /* This one is actually pretty simple... Might get more calls if we can't write |