Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e21db1a8 authored by Wonsik Kim's avatar Wonsik Kim
Browse files

screenrecord: ignore SIGPIPE

Bug: 74441592
Test: screenrecord --verbose /sdcard/record.mp4
Change-Id: Icabfc8d8cb3c1541d3727545687bec6ac5404deb
parent dddee581
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -135,6 +135,7 @@ static status_t configureSignals() {
                strerror(errno));
                strerror(errno));
        return err;
        return err;
    }
    }
    signal(SIGPIPE, SIG_IGN);
    return NO_ERROR;
    return NO_ERROR;
}
}