From 5e0c3ed403e11b6ba3e161d64967d022252f6102 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 23 Jan 2015 23:54:18 +0100 Subject: [PATCH] Log failure --- runloop.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runloop.c b/runloop.c index e0b809fcb8..cba595cda8 100644 --- a/runloop.c +++ b/runloop.c @@ -948,7 +948,10 @@ static int rarch_main_iterate_http_poll(void) g_extern.http_handle = net_http_new(url); if (!g_extern.http_handle) + { + RARCH_ERR("Could not create new HTTP session handle.\n"); return -1; + } g_extern.http_cb = net_http_get_pending_cb();