Add support for QNX & Fix xmltest UB#1016
Add support for QNX & Fix xmltest UB#1016fxing-qnx wants to merge 3 commits intoleethomason:masterfrom
Conversation
Remove QNX test install
|
That seems to make sense on the surface, but why are nulls coming back? Most things will crash on null pointers being printed. |
#include <stdio.h>
int main(int argc, char** argv)
{
printf("%s", NULL);
return 0;
}This simple test program will output
|
As the title says. Almost same as #988, but fix undefined behavior in xmltest.
#988 can be closed since this fix is a generalization of it.