Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sane leaks filedescriptors #93

Open
emdete opened this issue Sep 5, 2024 · 0 comments
Open

Sane leaks filedescriptors #93

emdete opened this issue Sep 5, 2024 · 0 comments

Comments

@emdete
Copy link

emdete commented Sep 5, 2024

the init/exit sequence is not cleaning up all resources. this short sequence shows the case:

from sane import init, get_devices, exit as deinit

for _ in range(99):
	init()
	d = get_devices()
	with open("/etc/hosts") as f:
		print(f.fileno())
	deinit()

as you can see the fd will increase (by 78 in my case).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant