summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--source/smbwrapper/smbw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index b8071b45a0b..f8ac6f1d0f2 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/smbwrapper/smbw.c
@@ -346,7 +346,7 @@ int smbw_path(const char *path)
/* this is needed to prevent recursion with the BSD malloc which
opens /etc/malloc.conf on the first call */
- if (strncmp(path,"/etc/", 5) == 0) {
+ if (!path || strncmp(path,"/etc/", 5) == 0) {
return 0;
}