From d20992343385ae4a3d84452e5cd52c2707dc44af Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 17 Aug 2024 06:10:16 +0200 Subject: [PATCH] Allow PixmapRecorder.close() to be called on inactive recorders --- pixmaprecorder.d | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pixmaprecorder.d b/pixmaprecorder.d index 5b51245..79f8329 100644 --- a/pixmaprecorder.d +++ b/pixmaprecorder.d @@ -394,8 +394,10 @@ final class PixmapRecorder { Returns: The status code provided by the FFmpeg program. +/ - int close() - in (this.isOpen) { + int close() { + if (!this.isOpen) { + return; + } _input.writeEnd.flush(); _input.writeEnd.close();