From 4c9455f967e21d30db0de2e13b6e1115ab8f36ce Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 6 Dec 2018 15:21:39 +0100 Subject: dc: fix "dc does_not_exist" SEGVing Signed-off-by: Denys Vlasenko --- miscutils/bc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'miscutils') diff --git a/miscutils/bc.c b/miscutils/bc.c index 3d53db778..0200afca2 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -1322,7 +1322,8 @@ static char* bc_read_file(const char *path) size_t size = ((size_t) -1); size_t i; - buf = xmalloc_open_read_close(path, &size); + // Never returns NULL (dies on errors) + buf = xmalloc_xopen_read_close(path, &size); for (i = 0; i < size; ++i) { char c = buf[i]; -- cgit v1.2.3