libgimp: Fix last MSVC warning
This commit is contained in:
parent
ca7da0080a
commit
9df9cf7ed1
1 changed files with 4 additions and 0 deletions
|
|
@ -347,7 +347,11 @@ gimp_fix_xmp_tag (const gchar *tag)
|
|||
|
||||
while ((substring = strstr (tag, org)))
|
||||
{
|
||||
#ifndef _UCRT
|
||||
strcpy (substring, new);
|
||||
#else
|
||||
strcpy_s (substring, strlen (org) + 1, new);
|
||||
#endif
|
||||
|
||||
tail = substring + strlen (org);
|
||||
substring += strlen (new);
|
||||
|
|
|
|||
Loading…
Reference in a new issue