summaryrefslogtreecommitdiff
path: root/uclient-http.c
diff options
context:
space:
mode:
Diffstat (limited to 'uclient-http.c')
-rw-r--r--uclient-http.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/uclient-http.c b/uclient-http.c
index 20b8a9a..74cc9a9 100644
--- a/uclient-http.c
+++ b/uclient-http.c
@@ -946,6 +946,9 @@ static struct uclient *uclient_http_alloc(void)
struct uclient_http *uh;
uh = calloc_a(sizeof(*uh));
+ if (!uh)
+ return NULL;
+
uh->disconnect_t.cb = uclient_http_disconnect_cb;
blob_buf_init(&uh->headers, 0);