-
Notifications
You must be signed in to change notification settings - Fork 45
Fixed Issue #32: Deadlock in Filter Chain When One Filter Fails #85
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
Fixed Issue #32: Deadlock in Filter Chain When One Filter Fails #85
Conversation
cupsfilters/filter.c
Outdated
| } | ||
|
|
||
|
|
||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove these added empty lines, they clutter the change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
cupsfilters/filter.c
Outdated
| if (log) log(ld, CF_LOGLEVEL_DEBUG, | ||
| "Closed the pipes for back and side channels"); | ||
| } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this added empty line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
|
Now you have removed too many empty lines. Make sure that the sum of all your commits does not contain any whitespace-only changes, as addition or removal of blank lines, trailing spaces, or the newline in the end of the file. |
cupsfilters/filter.c
Outdated
| if (log) log(ld, CF_LOGLEVEL_DEBUG, | ||
| "Closed the pipes for back and side channels"); | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you make this go away? The original file ends with a newline character after this last bracket.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure
This pull request resolves Issue #32, which caused a deadlock in the filter chain when one of the filters failed.
Changes Made:
This fix ensures that the filter chain does not get stuck, improving reliability. Please review and let me know if any changes are needed. 🚀