imgconverter: ensure that connection to the VM is properly closed
Even in case of some error (for example invalid image).
This commit is contained in:
parent
f5b65101ad
commit
fc3347c914
@ -153,9 +153,10 @@ get_from_stream(), get_from_vm(), get_xdg_icon_from_vm(), get_through_dvm()'''
|
|||||||
p.stdin.write('{0}\n'.format(src))
|
p.stdin.write('{0}\n'.format(src))
|
||||||
p.stdin.close()
|
p.stdin.close()
|
||||||
|
|
||||||
img = cls.get_from_stream(p.stdout, **kwargs)
|
try:
|
||||||
|
img = cls.get_from_stream(p.stdout, **kwargs)
|
||||||
p.stdout.close()
|
finally:
|
||||||
|
p.stdout.close()
|
||||||
if p.wait():
|
if p.wait():
|
||||||
raise Exception('Something went wrong with receiver')
|
raise Exception('Something went wrong with receiver')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user