diff options
-rw-r--r-- | AuFileName.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/AuFileName.c b/AuFileName.c index 0904273..63d4956 100644 --- a/AuFileName.c +++ b/AuFileName.c @@ -70,8 +70,10 @@ XauFileName (void) if (buf) free (buf); buf = malloc (size); - if (!buf) + if (!buf) { + bsize = 0; return NULL; + } if (!atexit_registered) { atexit(free_filename_buffer); |