From: Imran Zaman Date: Wed, 5 Nov 2014 15:40:18 +0000 (+0200) Subject: scanner, client: Added more error checks when strtol function is used X-Git-Tag: 1.6.91~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff769d8faed7adb6747423a17fbdf11f87b67f64;p=platform%2Fupstream%2Fwayland.git scanner, client: Added more error checks when strtol function is used Signed-off-by: Imran Zaman Reviewed-by: Pekka Paalanen --- diff --git a/src/scanner.c b/src/scanner.c index 5e5152b..fa8e0c0 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -405,11 +405,13 @@ start_element(void *data, const char *element_name, const char **atts) message->destructor = 0; if (since != NULL) { + int prev_errno = errno; errno = 0; version = strtol(since, &end, 0); - if (errno == EINVAL || end == since || *end != '\0') + if (errno != 0 || end == since || *end != '\0') fail(&ctx->loc, "invalid integer (%s)\n", since); + errno = prev_errno; } else { version = 1; } diff --git a/src/wayland-client.c b/src/wayland-client.c index b0f77b9..01629e0 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -829,9 +829,12 @@ wl_display_connect(const char *name) connection = getenv("WAYLAND_SOCKET"); if (connection) { + int prev_errno = errno; + errno = 0; fd = strtol(connection, &end, 0); - if (*end != '\0') + if (errno != 0 || connection == end || *end != '\0') return NULL; + errno = prev_errno; flags = fcntl(fd, F_GETFD); if (flags != -1)