Merge pull request #17765 from pstef/net-http-resolve-entry

Fix crash in net_http_resolve() in single-thread mode
This commit is contained in:
LibretroAdmin 2025-04-02 16:17:12 -07:00 committed by GitHub
commit a3eb6afe8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -948,7 +948,7 @@ static bool net_http_new_socket(struct http_t *state)
thread = sthread_create(net_http_resolve, entry);
sthread_detach(thread);
#else
net_http_resolve(state);
net_http_resolve(entry);
#endif
}