From 141c119d53d08a93078805bd355a245bd633d051 Mon Sep 17 00:00:00 2001 From: oetiker Date: Tue, 7 Oct 2008 15:38:11 +0000 Subject: [PATCH] Daniel Pocock reported that the argument may be NULL in low-diskspace situations, so check for that here to prevent a segmentation fault. -- Florian Forster git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.3@1585 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrd_open.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/program/src/rrd_open.c b/program/src/rrd_open.c index c4ee3c0a..06afabe1 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -364,6 +364,13 @@ void rrd_dontneed( unsigned long i; ssize_t _page_size = sysconf(_SC_PAGESIZE); + if (rrd_file == NULL) { +#if defined DEBUG && DEBUG + fprintf (stderr, "rrd_dontneed: Argument 'rrd_file' is NULL.\n"); +#endif + return; + } + #if defined DEBUG && DEBUG > 1 mincore_print(rrd_file, "before"); #endif -- 2.30.2