-
Notifications
You must be signed in to change notification settings - Fork 192
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
dav1d crashes generator #126
Comments
Is this the function signature? int getipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, uint32_t *fmode,
uint32_t *numsrc, struct in_addr *slist); At least for c-ares, this error is not a crash but something we deliberately do not support (elaborate types). The generator does not know what to do with the |
Interesting, what is the reason for this? Can it be worked around by writing a wrapper function? Also, an uncaught exception is not the best way to report an error. The KeyError is definitely not expected. What is the cause of that? |
A wrapper function will work. For For the simple call-by-value case, we should enhance the generator to support this.
Yes of course. Then again, there is a lot of code at Google that hard-fails on any error. Usually that means with a long-ish stack trace.
I can't tell right now, need to debug this. |
👍, though this might also be a motivation to finish the libtooling-based generator.
There is code in Qubes OS that also has poor error reporting, so I understand.
Thanks |
The text was updated successfully, but these errors were encountered: