summaryrefslogtreecommitdiff
path: root/src/raptor_www.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/raptor_www.c')
-rw-r--r--src/raptor_www.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/raptor_www.c b/src/raptor_www.c
index e1808837..26c2fa2f 100644
--- a/src/raptor_www.c
+++ b/src/raptor_www.c
@@ -136,7 +136,10 @@ raptor_new_www_with_connection(raptor_world* world, void *connection)
#ifdef RAPTOR_WWW_LIBCURL
www->curl_handle = (CURL*)connection;
- raptor_www_curl_init(www);
+ if(raptor_www_curl_init(www)) {
+ raptor_free_www(www);
+ www = NULL;
+ }
#endif
#ifdef RAPTOR_WWW_LIBXML
raptor_www_libxml_init(www);