From: Evan Broder Date: Wed, 18 Mar 2009 18:16:35 +0000 (-0400) Subject: Fix a potential use of an uninitialized variable. X-Git-Tag: 0.1.0~34 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/0de77457daaf0855fc5f87cc5cbd3be40f024d9a Fix a potential use of an uninitialized variable. Signed-off-by: Evan Broder --- diff --git a/afs/_pts.pyx b/afs/_pts.pyx index c18ef0f..56292cd 100644 --- a/afs/_pts.pyx +++ b/afs/_pts.pyx @@ -226,7 +226,7 @@ cdef class PTS: """ cdef namelist lnames cdef idlist lids - cdef afs_int32 code, id + cdef afs_int32 code, id = ANONYMOUSID name = name.lower() lids.idlist_len = 0