1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

* sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead

of 0 after the out_fail label.
2007-04-25  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/unix/sysv/linux/check_pf.c (make_request): Return -1 instead
	of 0 after the out_fail label.
This commit is contained in:
Jakub Jelinek
2007-04-25 16:05:18 +00:00
parent ba508da3ad
commit 41967e1cad
2 changed files with 6 additions and 1 deletions

View File

@ -226,7 +226,7 @@ make_request (int fd, pid_t pid, bool *seen_ipv4, bool *seen_ipv6,
out_fail:
if (use_malloc)
free (buf);
return 0;
return -1;
}