From b5682c57099c285ccc7cabdf59b00d431981ea6a Mon Sep 17 00:00:00 2001 From: Michał Łyszczek Date: Mon, 25 Jan 2021 00:39:58 +0100 Subject: examples: add missing el_cleanup() to some examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Łyszczek --- examples/print-thread-safe.c | 5 +++-- examples/print-tty.c | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/print-thread-safe.c b/examples/print-thread-safe.c index d1d3c55..c21d624 100644 --- a/examples/print-thread-safe.c +++ b/examples/print-thread-safe.c @@ -16,13 +16,14 @@ int main(void) if (el_option(EL_THREAD_SAFE, 1) != 0) { el_perror(ELF, "Failed to enable thread safety"); - goto error; + el_cleanup(); + return 1; } el_print(ELI, "Yeaaa.... there is no really good way to show"); el_print(ELI, "how pthread works in action, so this just checks"); el_print(ELI, "whether locking works at all"); -error: el_cleanup(); + return 0; } diff --git a/examples/print-tty.c b/examples/print-tty.c index ec90d01..889afe3 100644 --- a/examples/print-tty.c +++ b/examples/print-tty.c @@ -27,6 +27,7 @@ int main(void) if (el_option(EL_TTY_DEV, "/dev/ttyUSB1", B9600) != 0) { perror("tty set failed"); + el_cleanup(); return 1; } -- cgit v1.2.3-8-gadcc