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

InputStream nicht geschlossen #528

Open
AleksNo opened this issue Oct 22, 2024 · 1 comment
Open

InputStream nicht geschlossen #528

AleksNo opened this issue Oct 22, 2024 · 1 comment

Comments

@AleksNo
Copy link

AleksNo commented Oct 22, 2024

Hallo, mir ist aufgefallen, dass in der Datei ZUGFeRDExporterFromA3.java in der Zeile 832 ein InputStream erzeugt wird aber nirgendwo die .close()-Methode aufgerufen wird. Was einen Ressourceleak erzeugt.

Um das zu reparieren, einfach die Zeile:

try {
    InputStream colorProfile = Thread.currentThread().getContextClassLoader().getResourceAsStream("sRGB.icc");

durch:

try(InputStream colorProfile = Thread.currentThread().getContextClassLoader().getResourceAsStream("sRGB.icc")) {
			

ersetzen. Damit wird die .close()-Methode immer aufgerufen und der InputStream geschlossen.

Vielen Dank.

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

2 participants
@AleksNo and others