The branch main has been updated by mjg:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=dde5c031ed0d93d080442b26133e9ea800bbcd22

commit dde5c031ed0d93d080442b26133e9ea800bbcd22
Author:     Mateusz Guzik <[email protected]>
AuthorDate: 2021-05-29 17:46:37 +0000
Commit:     Mateusz Guzik <[email protected]>
CommitDate: 2021-05-29 22:04:09 +0000

    Fix up macro use in lim_cur
---
 sys/sys/resourcevar.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/resourcevar.h b/sys/sys/resourcevar.h
index e83b170ca291..d1c9e6d4985f 100644
--- a/sys/sys/resourcevar.h
+++ b/sys/sys/resourcevar.h
@@ -135,7 +135,7 @@ rlim_t       lim_cur(struct thread *td, int which);
        int _which = (which);                                           \
        if (__builtin_constant_p(which) && which != RLIMIT_DATA &&      \
            which != RLIMIT_STACK && which != RLIMIT_VMEM) {            \
-               _rlim = td->td_limit->pl_rlimit[which].rlim_cur;        \
+               _rlim = _td->td_limit->pl_rlimit[_which].rlim_cur;      \
        } else {                                                        \
                _rlim = lim_cur(_td, _which);                           \
        }                                                               \
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to