From 324defdd4add6e96eb0fa0abd6955949bca3fa24 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 8 Jan 1999 23:19:36 +0000 Subject: handle null path in smbw_path() --- source/smbwrapper/smbw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit