cext: remove unused variables
Differential Revision: https://phab.mercurial-scm.org/D8760
--- a/mercurial/cext/manifest.c Wed Jul 15 14:18:18 2020 -0400
+++ b/mercurial/cext/manifest.c Thu Jul 16 19:48:49 2020 +0200
@@ -103,8 +103,6 @@
{
char flag;
PyObject *hash = nodeof(l, &flag);
- ssize_t hlen;
- Py_ssize_t hplen, flen;
PyObject *flags;
PyObject *tup;
@@ -296,7 +294,6 @@
Py_ssize_t pl;
line *l;
char flag;
- Py_ssize_t consumed;
PyObject *ret = NULL, *path = NULL, *hash = NULL, *flags = NULL;
l = lmiter_nextline((lmIter *)o);
if (!l) {
--- a/mercurial/cext/revlog.c Wed Jul 15 14:18:18 2020 -0400
+++ b/mercurial/cext/revlog.c Thu Jul 16 19:48:49 2020 +0200
@@ -752,7 +752,6 @@
char phase)
{
Py_ssize_t len = index_length(self);
- PyObject *iter;
PyObject *item;
PyObject *iterator;
int rev, minrev = -1;
@@ -790,14 +789,12 @@
static const char trackedphases[] = {1, 2, 32, 96};
PyObject *ret = NULL;
PyObject *roots = Py_None;
- PyObject *idx = NULL;
PyObject *pyphase = NULL;
PyObject *pyrev = NULL;
PyObject *phaseroots = NULL;
PyObject *phasessize = NULL;
PyObject *phasesets[4] = {NULL, NULL, NULL, NULL};
Py_ssize_t len = index_length(self);
- const char *currentphase;
char *phases = NULL;
int minphaserev = -1, rev, i;
const int numphases = (int)(sizeof(phasesets) / sizeof(phasesets[0]));
@@ -880,7 +877,7 @@
phaseroots = _dict_new_presized(numphases);
if (phaseroots == NULL)
goto release;
- for (int i = 0; i < numphases; ++i) {
+ for (i = 0; i < numphases; ++i) {
pyphase = PyInt_FromLong(trackedphases[i]);
if (pyphase == NULL)
goto release;