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
In gd_cache.c the following code crashed:
if(strcmp(name, "content") == 0) { value = xmlGetProp(c1, "src"); str_init_create(&entry->src, value, 0); xmlFree(value); }
because value==NULL. If it is a protocol error that value is empty then the code should exit with an error message.
The text was updated successfully, but these errors were encountered:
That's rather interesting. My reading of the docs was that that shouldn't be something that should happen. I guess I need to look through them again.
Sorry, something went wrong.
No branches or pull requests
In gd_cache.c the following code crashed:
because value==NULL. If it is a protocol error that value is empty then the code should exit with an error message.
The text was updated successfully, but these errors were encountered: