Fix reversed condition after attempted style fix in r367196

Reported by:	xtouqh@hotmail.com
MFC after:	3 days
This commit is contained in:
Stefan Eßer 2020-10-31 12:10:43 +00:00
parent d86926912c
commit 3b9795a2e8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367199

View File

@ -79,7 +79,7 @@ sysctl(const int *name, u_int namelen, void *oldp, size_t *oldlenp,
switch (name[1]) {
case USER_CS_PATH:
if (oldp == NULL && orig_oldlen < sizeof(_PATH_STDPATH)) {
if (oldp != NULL && orig_oldlen < sizeof(_PATH_STDPATH)) {
errno = ENOMEM;
return (-1);
}
@ -88,7 +88,7 @@ sysctl(const int *name, u_int namelen, void *oldp, size_t *oldlenp,
memmove(oldp, _PATH_STDPATH, sizeof(_PATH_STDPATH));
return (0);
case USER_LOCALBASE:
if (oldp == NULL && orig_oldlen < sizeof(_PATH_LOCALBASE)) {
if (oldp != NULL && orig_oldlen < sizeof(_PATH_LOCALBASE)) {
errno = ENOMEM;
return (-1);
}