Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialise struct timezone in main_add_changes_commit #1291

Merged
merged 1 commit into from Aug 31, 2023

Conversation

wezm
Copy link
Contributor

@wezm wezm commented Aug 1, 2023

On musl libc gettimeofday (which is used by time_now) does not populate the timezone struct passed to it as POSIX says:

If tzp is not a null pointer, the behavior is unspecified.

tz_minuteswest is later multiplied by 60 which can overflow (if the value that happens to be in tz_minuteswest is large). When tig is compiled with integer overflow hardening (as is done on Chimera Linux) via the clang option -fsanitize=signed-integer-overflow this can result in tig crashing due to the overflow.

This PR initialises tz to prevent this.

On musl libc gettimeofday (which is used by time_now) does not
populate the timezone struct passed to it as POSIX says:

> If tzp is not a null pointer, the behavior is unspecified.

tz_minuteswest is later multiplied by 60 which can overflow. When tig
is compiled with integer overflow hardening (as is done on Chimera
Linux) via the clang option -fsanitize=signed-integer-overflow this can
result in tig crashing due to the overflow.
@koutcher
Copy link
Collaborator

LGTM, thanks

@koutcher koutcher merged commit 8e3a53e into jonas:master Aug 31, 2023
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants