* 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

@ -1,3 +1,8 @@
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.
2007-04-25 Ulrich Drepper <drepper@redhat.com>
[BZ #4406]

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;
}