aboutsummaryrefslogtreecommitdiffhomepage
path: root/cbits
diff options
context:
space:
mode:
authorGravatar panne <unknown>2002-10-05 22:35:45 +0000
committerGravatar panne <unknown>2002-10-05 22:35:45 +0000
commitd637529b092d9b81dd5518c11662e7971716f9f8 (patch)
treec32516f711eae240ddf85acf8f29864e173ed2c8 /cbits
parent426094f214f66221964a55e0a7faf3da096ad6fa (diff)
[project @ 2002-10-05 22:35:45 by panne]
Warning police #14: Help gcc a bit with variables which are not obviously always used.
Diffstat (limited to 'cbits')
-rw-r--r--cbits/execvpe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cbits/execvpe.c b/cbits/execvpe.c
index 9a92169..d06b9a3 100644
--- a/cbits/execvpe.c
+++ b/cbits/execvpe.c
@@ -58,7 +58,7 @@ execvpe(char *name, char **argv, char **envp)
register int lp, ln;
register char *p;
int eacces=0, etxtbsy=0;
- char *bp, *cur, *path, *buf;
+ char *bp, *cur, *path, *buf = 0;
/* If it's an absolute or relative path name, it's easy. */
if (strchr(name, '/')) {