From 0de77457daaf0855fc5f87cc5cbd3be40f024d9a Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Wed, 18 Mar 2009 14:16:35 -0400 Subject: [PATCH 1/1] Fix a potential use of an uninitialized variable. Signed-off-by: Evan Broder --- afs/_pts.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.9.5