imgconverter: ensure that connection to the VM is properly closed

Even in case of some error (for example invalid image).
release3.0
Marek Marczykowski-Górecki 9 years ago
parent f5b65101ad
commit fc3347c914
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

@ -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.close()
img = cls.get_from_stream(p.stdout, **kwargs)
p.stdout.close()
try:
img = cls.get_from_stream(p.stdout, **kwargs)
finally:
p.stdout.close()
if p.wait():
raise Exception('Something went wrong with receiver')

Loading…
Cancel
Save