##// END OF EJS Templates
diffhelpers: fix botched return statement from c8e7fa41bfc5...
Augie Fackler -
r23964:f1c127df stable
parent child Browse files
Show More
@@ -35,7 +35,7 b' static void _fix_newline(PyObject *hunk,'
35
35
36 hline = PyBytes_FromStringAndSize(l, sz-1);
36 hline = PyBytes_FromStringAndSize(l, sz-1);
37 if (!hline) {
37 if (!hline) {
38 return NULL;
38 return;
39 }
39 }
40
40
41 if (c == ' ' || c == '+') {
41 if (c == ' ' || c == '+') {
General Comments 0
You need to be logged in to leave comments. Login now