Fix compilation warning in etags.c

* lib-src/etags.c (etags_mktmp) [DOS_NT]: Don't dereference a NULL
pointer.  Reported by Richard Copley <rcopley@gmail.com>.
This commit is contained in:
Eli Zaretskii 2017-09-16 22:17:55 +03:00
parent 5490ccc5eb
commit c3df816585

View file

@ -7068,14 +7068,16 @@ etags_mktmp (void)
errno = temp_errno; errno = temp_errno;
templt = NULL; templt = NULL;
} }
#if defined (DOS_NT) #if defined (DOS_NT)
/* The file name will be used in shell redirection, so it needs to have else
DOS-style backslashes, or else the Windows shell will barf. */ {
char *p; /* The file name will be used in shell redirection, so it needs to have
for (p = templt; *p; p++) DOS-style backslashes, or else the Windows shell will barf. */
if (*p == '/') char *p;
*p = '\\'; for (p = templt; *p; p++)
if (*p == '/')
*p = '\\';
}
#endif #endif
return templt; return templt;