This website uses cookies and other technology to provide you a more personalized
experience. By
continuing the view of our web-pages you accept the terms of using these files. If you
don't
want your personal data to be processed, please, leave this site.
Learn More →
Examples of errors detected by the V743 diagnostic
V743. The memory areas must not overlap. Use 'memmove' function.
Stickies
V743 The memory areas must not overlap. Use 'memmove' function. stickyinstaller.cpp 226
#define EXPORTVERSION18 "StickyExport V1.8\032"
int LoadStickyData (void)
{
char chkBuff[32];
int versionLen = strlen (EXPORTVERSION18);
....
memcpy (chkBuff, chkBuff+1, versionLen-1);
....
}