wpaspy: Fix potentially referencing non existing attribute
In wpaspy.py in the Ctrl object constructor there is a try/except. In the except part the code references the s attribute of the object. This attribute is only created later in the try part. If an exception occurs before the attribute creation then the except part references a non existing attribute. Fix that by assigning None to the s attribute at the beginning of the try part. Signed-off-by: Jonathan Afek <jonathanx.afek@intel.com>
This commit is contained in:
parent
5b45f478c2
commit
93568233bc
1 changed files with 1 additions and 0 deletions
|
@ -44,6 +44,7 @@ class Ctrl:
|
|||
raise
|
||||
else:
|
||||
try:
|
||||
self.s = None
|
||||
ai_list = socket.getaddrinfo(path, port, socket.AF_INET,
|
||||
socket.SOCK_DGRAM)
|
||||
for af, socktype, proto, cn, sockaddr in ai_list:
|
||||
|
|
Loading…
Reference in a new issue