diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-11-23 12:06:44 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2008-11-23 12:06:44 +0000 |
commit | 0ec73b5c029ea7c76af954b2b49c10cb7541c51c (patch) | |
tree | 9c5cd2fe1b9ac108a2b73763047acc28bbc21090 /xserver/hw/xfree86 | |
parent | 8f99d356ed5b98d3231b9abb8b073768adbb5be9 (diff) |
missing action in if statement.
Diffstat (limited to 'xserver/hw/xfree86')
-rw-r--r-- | xserver/hw/xfree86/common/xf86Configure.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xserver/hw/xfree86/common/xf86Configure.c b/xserver/hw/xfree86/common/xf86Configure.c index eb6a645ff..000b18341 100644 --- a/xserver/hw/xfree86/common/xf86Configure.c +++ b/xserver/hw/xfree86/common/xf86Configure.c @@ -794,6 +794,7 @@ DoConfigure() if (!(filename = (char *)xalloc(strlen(home) + strlen(configfile) + 3))) + goto bail; if (home[0] == '/' && home[1] == '\0') home[0] = '\0'; |