We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/jleffler/soq/blob/bb84e0704fb66a558fbcf507f43e76a7a547930e/src/libsoq/debug.c#L57C1-L59C1
if (debugfp != stdin && debugfp != stdout && debugfp != stderr) fclose(debugfp); debugfp = dbfp;
In main:
main
db_setfileptr(stderr);
Here, debugfp is initialized with 0 and then is attempted to close in db_setfileptr, leading to SEGFAULT
debugfp
db_setfileptr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/jleffler/soq/blob/bb84e0704fb66a558fbcf507f43e76a7a547930e/src/libsoq/debug.c#L57C1-L59C1
In
main
:Here,
debugfp
is initialized with 0 and then is attempted to close indb_setfileptr
, leading to SEGFAULTThe text was updated successfully, but these errors were encountered: