Skip to content

Commit f4d7669

Browse files
committed
Add missing brace initialization
1 parent c2a45c2 commit f4d7669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httplib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3801,7 +3801,7 @@ inline int getaddrinfo_with_timeout(const char *node, const char *service,
38013801

38023802
struct GetAddrInfoState {
38033803
std::mutex mutex{};
3804-
std::condition_variable result_cv;
3804+
std::condition_variable result_cv{};
38053805
bool completed{false};
38063806
int result{0};
38073807
std::string node{};

0 commit comments

Comments
 (0)