1
0
mirror of https://github.com/openbsd/src.git synced 2026-04-30 00:56:33 +00:00

test correct variable for file_new() return value

found with smatch, ok ratchov@
This commit is contained in:
jsg
2025-09-15 08:39:22 +00:00
parent ba43a57ca7
commit a575ed68fc

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: listen.c,v 1.15 2024/12/20 07:35:56 ratchov Exp $ */
/* $OpenBSD: listen.c,v 1.16 2025/09/15 08:39:22 jsg Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -167,7 +167,7 @@ listen_new_tcp(char *addr, unsigned int port)
}
f = xmalloc(sizeof(struct listen));
f->file = file_new(&listen_fileops, f, "tcp", 1);
if (f == NULL) {
if (f->file == NULL) {
bad_close:
close(s);
continue;