We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Important
This issue was migrated from Trac:
andrew_b
There is a following code in lib/vfs/mc-vfs/ftpfs.c file:
220 /* replace first occurance of ":/" with ":" */ 221 if ((p = strchr (ret, ':')) && *(p + 1) == '/') 222 strcpy (p + 1, p + 2);
But strcpy() must not be used for overlaping objects.
The text was updated successfully, but these errors were encountered:
Changed by andrew_b (@aborodin) on Feb 11, 2010 at 10:26 UTC (comment 1)
Feb 11, 2010 at 10:26 UTC
Created 2018_fptfs_strcpy branch. Parent branch is master. [1fa19b8f818dd11b5e0df5187e26d911dcb3bef7]
Sorry, something went wrong.
Changed by angel_il (@ilia-maslakov) on Feb 17, 2010 at 11:42 UTC (comment 2)
angel_il
Feb 17, 2010 at 11:42 UTC
Changed by slavazanko (@slavaz) on Feb 18, 2010 at 10:10 UTC (comment 3)
slavazanko
Feb 18, 2010 at 10:10 UTC
Changed by andrew_b (@aborodin) on Feb 18, 2010 at 10:16 UTC (comment 4)
Feb 18, 2010 at 10:16 UTC
Merged to master. [68ecccb]
Changed by andrew_b (@aborodin) on Feb 18, 2010 at 10:25 UTC (comment 5)
Feb 18, 2010 at 10:25 UTC
Cherry-picked to 4.7.0-stable. [f0628b8]
aborodin
No branches or pull requests
Important
This issue was migrated from Trac:
andrew_b
(@aborodin)There is a following code in lib/vfs/mc-vfs/ftpfs.c file:
But strcpy() must not be used for overlaping objects.
The text was updated successfully, but these errors were encountered: