소스 검색

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