1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-08-05 18:51:31 +02:00

utils: 'with-atomic-file-output' closes the port upon exception.

Previously it could have left the file descriptor open.

* guix/utils.scm (with-atomic-file-output): Call 'close-port' in handler.
This commit is contained in:
Ludovic Courtès
2016-06-13 18:00:29 +02:00
parent d1f33ba44b
commit c25637dfe8
+2 -1
View File
@@ -630,7 +630,8 @@ output port, and PROC's result is returned."
(rename-file template file)
result))
(lambda (key . args)
(false-if-exception (delete-file template))))))
(false-if-exception (delete-file template))
(close-port out)))))
(define (cache-directory)
"Return the cache directory for Guix, by default ~/.cache/guix."