From a6b8f513b92b52ce7462a0c61c7c4843e2f12618 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Sat, 27 Feb 2016 16:05:42 +0100 Subject: consistency: check snprintf result == -1 --- sfeed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfeed.c b/sfeed.c index eab0dec..20572c0 100644 --- a/sfeed.c +++ b/sfeed.c @@ -318,7 +318,7 @@ time_ok: } else { r = snprintf(buf, bufsiz, "%s%c%02d:%02d", tz[0] ? tz : "UTC", c, tzhour, tzmin); - if (r < 0 || (size_t)r >= bufsiz) + if (r == -1 || (size_t)r >= bufsiz) return -1; /* truncation or error */ } if (tzoffset) -- cgit v1.2.3