From 3b35bcc955bdadb31cb9be003fa6d2ed80edaeac Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 7 Apr 2015 22:45:33 -0300 Subject: [PATCH] -fix resolver erase query to avoid running out of slots, fixes #1621 --- core/io/ip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/io/ip.cpp b/core/io/ip.cpp index 6ef6b311882..2f20f4b6398 100644 --- a/core/io/ip.cpp +++ b/core/io/ip.cpp @@ -183,7 +183,7 @@ void IP::erase_resolve_item(ResolverID p_id) { GLOBAL_LOCK_FUNCTION; - resolver->queue[p_id].status=IP::RESOLVER_STATUS_DONE; + resolver->queue[p_id].status=IP::RESOLVER_STATUS_NONE; }