X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=blobdiff_plain;f=src%2Frrd_first.c;h=bdba6c05f0c5b61fb820628f4c0782bfc81807cf;hp=0bd3f459ab9d7ac22945c1f2a1e13e5abf17f00f;hb=35354e059a77479a7a135c1e4fc71c76523fd7c4;hpb=2a6a270edfda89b04722b42b57992907f871c671 diff --git a/src/rrd_first.c b/src/rrd_first.c index 0bd3f45..bdba6c0 100644 --- a/src/rrd_first.c +++ b/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2.23 Copyright by Tobi Oetiker, 1997-2007 + * RRDtool 1.3.0 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_first Return ***************************************************************************** @@ -15,15 +15,15 @@ time_t rrd_first( { int target_rraindex = 0; char *endptr; + struct option long_options[] = { + {"rraindex", required_argument, 0, 129}, + {0, 0, 0, 0} + }; optind = 0; opterr = 0; /* initialize getopt */ while (1) { - static struct option long_options[] = { - {"rraindex", required_argument, 0, 129}, - {0, 0, 0, 0} - }; int option_index = 0; int opt; @@ -61,21 +61,18 @@ time_t rrd_first_r( const int rraindex) { off_t rra_start, timer; - time_t then; + time_t then = -1; rrd_t rrd; rrd_file_t *rrd_file; rrd_file = rrd_open(filename, &rrd, RRD_READONLY); if (rrd_file == NULL) { - rrd_set_error("could not open RRD"); - return (-1); + goto err_free; } if ((rraindex < 0) || (rraindex >= (int) rrd.stat_head->rra_cnt)) { rrd_set_error("invalid rraindex number"); - rrd_free(&rrd); - close(rrd_file->fd); - return (-1); + goto err_close; } rra_start = rrd_file->header_len; @@ -91,9 +88,9 @@ time_t rrd_first_r( rrd.live_head->last_up % (rrd.rra_def[rraindex].pdp_cnt * rrd.stat_head->pdp_step)) + (timer * rrd.rra_def[rraindex].pdp_cnt * rrd.stat_head->pdp_step); - - rrd_free(&rrd); - close(rrd_file->fd); + err_close: rrd_close(rrd_file); + err_free: + rrd_free(&rrd); return (then); }