projects
/
invirt/packages/python-afs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix a potential use of an uninitialized variable.
[invirt/packages/python-afs.git]
/
afs
/
_pts.pyx
diff --git
a/afs/_pts.pyx
b/afs/_pts.pyx
index
c18ef0f
..
56292cd
100644
(file)
--- 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