diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-26 09:03:17 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-26 09:03:17 +0300 |
commit | 847d60c4525a81c1c299e3b318c0552b2616f49b (patch) | |
tree | 72b7a7cae82ff1c00cb3ecf96ce4b39b3851972e /sal/osl | |
parent | d06e5adc21f29c8954021a60445a5c0810731d9e (diff) |
Use strncmp()
Change-Id: I593ce24ce83cd3034d23297adc3de5f6de18f3a9
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/uunxapi.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sal/osl/unx/uunxapi.cxx b/sal/osl/unx/uunxapi.cxx index 866cef2a8593..316f75a3bae1 100644 --- a/sal/osl/unx/uunxapi.cxx +++ b/sal/osl/unx/uunxapi.cxx @@ -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]]; |