xwayland: Close fd opened for lockfile on error path

This commit is contained in:
Rob Bradford 2012-12-05 18:47:07 +00:00 committed by Kristian Høgsberg
parent 0b0be8eaf7
commit ef94085ff1
1 changed files with 3 additions and 0 deletions

View File

@ -247,6 +247,9 @@ create_lockfile(int display, char *lockfile, size_t lsize)
if (fd < 0 || read(fd, pid, 11) != 11) {
weston_log("can't read lock file %s: %s\n",
lockfile, strerror(errno));
if (fd >= 0)
close (fd);
errno = EEXIST;
return -1;
}