diff options
author | DJ Delorie <dj@delorie.com> | 2017-07-19 13:14:34 -0400 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2017-07-19 13:17:03 -0400 |
commit | f8cef4d07d9641e27629bd3ce2d13f5d702fb251 (patch) | |
tree | a7d3591b91a319798aa5f1cd476b166ce71b1a36 /ChangeLog | |
parent | Add country_name to iu_CA locale (diff) | |
download | glibc-f8cef4d07d9641e27629bd3ce2d13f5d702fb251.tar.gz glibc-f8cef4d07d9641e27629bd3ce2d13f5d702fb251.tar.bz2 glibc-f8cef4d07d9641e27629bd3ce2d13f5d702fb251.zip |
Fix cast-after-dereference
Original code was dereferencing a char*, then casting the value
to size_t. Should cast the pointer to size_t* then deference.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2017-07-19 DJ Delorie <dj@delorie.com> + + * grp/grp-merge.c (libc_hidden_def): Fix cast-after-dereference. + 2017-07-19 H.J. Lu <hongjiu.lu@intel.com> [BZ #21741] |