mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
cad0f939cb
commit
d4f224874d
@ -292,6 +292,8 @@ def _get_forward_table():
|
|||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
raise OSError('Unable to get IP forward table. Error: %s' % err)
|
raise OSError('Unable to get IP forward table. Error: %s' % err)
|
||||||
|
if p_forward_table is None:
|
||||||
|
raise OSError('Failed to get IP routing table, table appears to be changing rapidly')
|
||||||
finally:
|
finally:
|
||||||
if p_forward_table is not None:
|
if p_forward_table is not None:
|
||||||
HeapFree(heap, 0, p_forward_table)
|
HeapFree(heap, 0, p_forward_table)
|
||||||
@ -317,6 +319,8 @@ def _get_adapters():
|
|||||||
addresses = ctypes.cast(buf, ctypes.POINTER(IP_ADAPTER_ADDRESSES))
|
addresses = ctypes.cast(buf, ctypes.POINTER(IP_ADAPTER_ADDRESSES))
|
||||||
else:
|
else:
|
||||||
raise OSError('Failed to determine size for adapters table with error: %s' % err)
|
raise OSError('Failed to determine size for adapters table with error: %s' % err)
|
||||||
|
if addresses is None:
|
||||||
|
raise OSError('Failed to get adapter addresses, table appears to be changing rapidly')
|
||||||
finally:
|
finally:
|
||||||
if addresses is not None:
|
if addresses is not None:
|
||||||
HeapFree(heap, 0, addresses)
|
HeapFree(heap, 0, addresses)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user