git.samba.org
/
samba.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
CVE-2015-5330: strupper_talloc_n_handle(): properly count characters
[samba.git]
/
lib
/
util
/
charset
/
util_unistr.c
diff --git
a/lib/util/charset/util_unistr.c
b/lib/util/charset/util_unistr.c
index f2992695f65e78a1c2fbbe96d0f63b1593ee912d..2cc87186daecbb3c421f1cef37b43d2a66e41cca 100644
(file)
--- a/
lib/util/charset/util_unistr.c
+++ b/
lib/util/charset/util_unistr.c
@@
-110,11
+110,12
@@
_PUBLIC_ char *strupper_talloc_n_handle(struct smb_iconv_handle *iconv_handle,
return NULL;
}
- while (n
--
&& *src) {
+ while (n && *src) {
size_t c_size;
codepoint_t c = next_codepoint_handle_ext(iconv_handle, src, n,
CH_UNIX, &c_size);
src += c_size;
+ n -= c_size;
c = toupper_m(c);