瀏覽代碼

-fix resolver erase query to avoid running out of slots, fixes #1621

Juan Linietsky 10 年之前
父節點
當前提交
3b35bcc955
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/io/ip.cpp

+ 1 - 1
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;
 
 }