o Add missing initialization of errno from error returns of
cap_get_fd(), cap_get_file() and cap_get_proc(). Submitted by: jedgar
This commit is contained in:
parent
ca1460dd64
commit
fe33e45a80
@ -47,6 +47,7 @@ cap_get_fd(int fd)
|
||||
|
||||
error = __cap_get_fd(fd, cap);
|
||||
if (error) {
|
||||
errno = erro;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ cap_get_file(const char *path_p)
|
||||
|
||||
error = __cap_get_file(path_p, cap);
|
||||
if (error) {
|
||||
errno = error;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ cap_get_proc(void)
|
||||
|
||||
error = __cap_get_proc(cap);
|
||||
if (error) {
|
||||
errno = error;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ cap_get_fd(int fd)
|
||||
|
||||
error = __cap_get_fd(fd, cap);
|
||||
if (error) {
|
||||
errno = erro;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ cap_get_file(const char *path_p)
|
||||
|
||||
error = __cap_get_file(path_p, cap);
|
||||
if (error) {
|
||||
errno = error;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
@ -47,6 +47,7 @@ cap_get_proc(void)
|
||||
|
||||
error = __cap_get_proc(cap);
|
||||
if (error) {
|
||||
errno = error;
|
||||
cap_free(cap);
|
||||
return (NULL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user