Don't compare socket(2) to NULL

Ugh, embarassing.  Thanks, gcc 4.6.
This commit is contained in:
Kristian Høgsberg 2011-01-25 15:11:53 -05:00
parent c4df99cb2c
commit 8335568d07

View File

@ -649,7 +649,7 @@ wl_display_add_socket(struct wl_display *display, const char *name)
const char *runtime_dir;
s = malloc(sizeof *s);
if (socket == NULL)
if (s == NULL)
return -1;
s->fd = socket(PF_LOCAL, SOCK_STREAM, 0);