Don't check if (!str) in xStrdup
This effectively reverts "Stricter strdup." 4674b4a7 If str is NULL upon the calling of strdup(), it should crash with SIGSEGV. Just let it crash. Adding the "if (!str) fail();" code serves nothing but bloat.
Please register or sign in to comment