X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwin32_apply.c;h=b326e182a5eb788f8827c31ec0ca5f8675052299;hb=50a73294df28e50188565ea88b72ed13c87ce4bf;hp=a662cbf33ea94d0f306cd1bf84f8e4c8d883b313;hpb=3de1ec66f778edda19865482d685bc6f4e17faf7;p=wimlib diff --git a/src/win32_apply.c b/src/win32_apply.c index a662cbf3..b326e182 100644 --- a/src/win32_apply.c +++ b/src/win32_apply.c @@ -634,12 +634,12 @@ inode_longest_named_data_stream_spec(const struct wim_inode *inode) const struct wim_inode_stream *strm = &inode->i_streams[i]; if (!stream_is_named_data_stream(strm)) continue; - size_t len = utf16le_len_bytes(strm->stream_name); + size_t len = utf16le_len_chars(strm->stream_name); if (len > max) max = len; } if (max) - max = 1 + (max / sizeof(wchar_t)); + max += 1; return max; }