You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To fix the issue, you should check the return value of 'setuid' and 'setgid' and handle any errors appropriately.
If you don't care about the return value, you can cast it to (void) to explicitly indicate that you are intentionally ignoring the return value:
To fix the issue, you should check the return value of 'setuid' and 'setgid' and handle any errors appropriately. If you don't care about the return value, you can cast it to (void) to explicitly indicate that you are intentionally ignoring the return value:
On Sat, 11 Mar 2023, 1:50 am Rémi Palancher, ***@***.***> wrote:
To fix the issue, you should check the return value of 'setuid' and
'setgid' and handle any errors appropriately. If you don't care about the
return value, you can cast it to (void) to explicitly indicate that you are
intentionally ignoring the return value:
(void)setuid(0);
(void)setgid(0);
Thank you @Vedant-code <https://github.com/Vedant-code> for the
suggestion!
—
Reply to this email directly, view it on GitHub
<#70 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AUJ5TJYQHWK7FLNS7WFE4SDW3OEINANCNFSM6AAAAAAVWTHFQE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
The compiler raises warning when builder the binary wrappers, for example during build on fedora 37:
This should be fixed.
The text was updated successfully, but these errors were encountered: