1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

idna: fix compilation warning

w_target_len is set but unsued in release mode.
This commit is contained in:
Saúl Ibarra Corretgé 2023-12-11 09:18:50 +01:00 committed by GitHub
parent 5e302730cd
commit 88f7e502a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -400,6 +400,7 @@ void uv_wtf8_to_utf16(const char* source_ptr,
}
} while (*source_ptr++);
(void)w_target_len;
assert(w_target_len == 0);
}