Line 261 is currently... ` if ((out0 == NULL) || (out0 == NULL)) ` but this repeated test for `out0 == NULL` is obviously redundant and I assume this test should be... ` if ((out0 == NULL) || (out1 == NULL)) `