1
0
mirror of synced 2025-02-17 18:59:21 +01:00

sys: Fixed http request stack overflow

This commit is contained in:
WerWolv 2023-03-23 11:43:07 +01:00
parent 15be24db62
commit bb4819bce4
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 25922e11b9cc6bbde1a321f5bd6ab2e622b07531
Subproject commit 36f3c9cc8c3f38bb1f2540f6dbcdc842f5a67a0d

View File

@ -305,7 +305,7 @@ namespace hex {
}
}
u32 statusCode = 0;
long statusCode = 0;
curl_easy_getinfo(this->m_curl, CURLINFO_RESPONSE_CODE, &statusCode);
return Result<T>(statusCode, { data.begin(), data.end() });