charset_conv: suppress unused-label warning

This commit is contained in:
Kacper Michajłow 2023-10-14 16:05:54 +02:00 committed by Dudemanguy
parent cb48b40bb3
commit f0b2854e93
1 changed files with 2 additions and 1 deletions

View File

@ -223,9 +223,10 @@ bstr mp_iconv_to_utf8(struct mp_log *log, bstr buf, const char *cp, int flags)
outbuf[osize - oleft - 1] = 0;
return (bstr){outbuf, osize - oleft - 1};
#endif
failure:
#endif
if (flags & MP_NO_LATIN1_FALLBACK) {
return buf;
} else {