Use strncmp()

Change-Id: I593ce24ce83cd3034d23297adc3de5f6de18f3a9
This commit is contained in:
Tor Lillqvist
2013-08-26 09:03:17 +03:00
parent d06e5adc21
commit 847d60c452

View File

@@ -272,8 +272,7 @@ int open_c(const char *cpPath, int oflag, int mode)
// scoped bookmark for it so that we can access the file in
// the future, too. (For the "Recent Files" functionality.)
const char *sandbox = [NSHomeDirectory() UTF8String];
if (!(strlen(cpPath) > strlen(sandbox) &&
memcmp(sandbox, cpPath, strlen(sandbox)) == 0 &&
if (!(strncmp(sandbox, cpPath, strlen(sandbox)) == 0 &&
cpPath[strlen(sandbox)] == '/'))
{
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithUTF8String:cpPath]];