Comment 0 for bug 1156218

Revision history for this message
Ari (ari-lp) wrote :

Description: Temporary files generated in the process of creating thumbnails are not removed after the thumbnailer exits.

Current behaviour: ooo-thumbnailer does not remove tmpfile on exit

Expected behaviour: The script should clean after itself.

Patch: I was able to troubleshoot this bug by modifying the script in /usr/bin/ooo-thumbnailer:

Changing

    trap cleanup INT TERM EXIT

to

    trap cleanup ERR

solved the problem for me.