From: Heinrich Schuchardt <[email protected]> xrealloc never returns null
Signed-off-by: Heinrich Schuchardt <[email protected]> --- util.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/util.c b/util.c index be67836..1ce8b97 100644 --- a/util.c +++ b/util.c @@ -219,10 +219,6 @@ int utilfdt_read_err_len(const char *filename, char **buffp, off_t *len) if (offset == bufsize) { bufsize *= 2; buf = xrealloc(buf, bufsize); - if (!buf) { - ret = ENOMEM; - break; - } } ret = read(fd, &buf[offset], bufsize - offset); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
