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

gcc 14.2.1 flags calloc error and aborts #996

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

kb1vc
Copy link

@kb1vc kb1vc commented Dec 31, 2024

(from the commit comment)
gcc 14.2.1, shipping with fedora 40, complains about
calloc(sizeof(foo), count)
since the definition of calloc calls for the count argument to be first and the datawidget argument to be second. Like it or not, the difference causes gcc to error-out.

This change makes it possible to build under Fedora 40 and later.

I am unable to test this at runtime, so this change should be viewed with caution. But the modification should be benign to less finicky compilers, and is necessary for gcc 14.2.1 (and likely, beyond).

    calloc(sizeof(foo), count)

since the definition of calloc calls for the count argument to be first
and the datawidget argument to be second.  Like it or not, the diffence
causes gcc to error-out.

This change makes it possible to build under Fedora 40 and later.
@CLAassistant
Copy link

CLAassistant commented Dec 31, 2024

CLA assistant check
All committers have signed the CLA.

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.

2 participants