##// END OF EJS Templates
lazymanifest: drop SP before some labels...
Martin von Zweigbergk -
r24975:89c2bf63 default
parent child Browse files
Show More
@@ -247,7 +247,7 b' static PyObject *lmiter_iterentriesnext('
247 247 goto done;
248 248 }
249 249 ret = PyTuple_Pack(3, path, hash, flags);
250 done:
250 done:
251 251 Py_XDECREF(path);
252 252 Py_XDECREF(hash);
253 253 Py_XDECREF(flags);
@@ -672,7 +672,7 b' static lazymanifest *lazymanifest_copy(l'
672 672 copy->pydata = self->pydata;
673 673 Py_INCREF(copy->pydata);
674 674 return copy;
675 nomem:
675 nomem:
676 676 PyErr_NoMemory();
677 677 Py_XDECREF(copy);
678 678 return NULL;
@@ -724,7 +724,7 b' static lazymanifest *lazymanifest_filter'
724 724 }
725 725 copy->livelines = copy->numlines;
726 726 return copy;
727 nomem:
727 nomem:
728 728 PyErr_NoMemory();
729 729 Py_XDECREF(copy);
730 730 return NULL;
@@ -845,7 +845,7 b' static PyObject *lazymanifest_diff(lazym'
845 845 }
846 846 Py_DECREF(emptyTup);
847 847 return ret;
848 nomem:
848 nomem:
849 849 PyErr_NoMemory();
850 850 Py_XDECREF(ret);
851 851 Py_XDECREF(emptyTup);
General Comments 0
You need to be logged in to leave comments. Login now