[Zope-dev] M$ compiler triumph

Robin Becker robin@jessikat.demon.co.uk
Fri, 8 Oct 1999 12:15:45 +0100


I get this message from VC++ 6.0

Compiling...
cPickleCache.c
C:\Python\devel\Zope\lib\python\ZODB\cPickleCache.c(323) : warning
C4700: local variable 'dt' used without having been initialized

line 323 is the second UNLESS inside

static PyObject *
cc_full_sweep(ccobject *self, PyObject *args)
{
  int dt=0;
  UNLESS(PyArg_ParseTuple(args, "|i", &dt)) return NULL;
  UNLESS(-1 != fullgc(self,dt)) return NULL;
  Py_INCREF(Py_None);
  return Py_None;
}
-- 
Robin Becker