mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
#2927: Fix assigned value to wrong pointer
This commit is contained in:
parent
c5ee4b1184
commit
d10fc9cb74
@ -1313,7 +1313,7 @@ png_check_keyword(png_structp png_ptr, png_charp key, png_charpp new_key)
|
||||
if (key_len > 79)
|
||||
{
|
||||
png_warning(png_ptr, "keyword length must be 1 - 79 characters");
|
||||
new_key[79] = '\0';
|
||||
*new_key[79] = '\0';
|
||||
key_len = 79;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user