From 0fead5249b8ef2c3c5cbbbd712855bae877aa27b Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Sun, 7 Feb 2016 16:23:59 +0100 Subject: Fix for empty file name --- src/util.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.cpp b/src/util.cpp index fc8d5c9..592d0b2 100755 --- a/src/util.cpp +++ b/src/util.cpp @@ -5358,6 +5358,7 @@ QCString escapeCharsInString(const char *name,bool allowDots,bool allowUnderscor */ QCString convertNameToFile(const char *name,bool allowDots,bool allowUnderscore) { + if (name==0 || name[0]=='\0') return ""; static bool shortNames = Config_getBool(SHORT_NAMES); static bool createSubdirs = Config_getBool(CREATE_SUBDIRS); QCString result; -- cgit v0.12