X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_info.c;h=a4e28622ef437d5a714c059e72b3aa8947bea22c;hb=b67e982f2818e3576455d7e494e987ac75952069;hp=9b2363f850b3b143579789da7186435189494547;hpb=1d0d1678df2083bc996d579e0c5d0cc46fff6745;p=rrdtool.git diff --git a/src/rrd_info.c b/src/rrd_info.c index 9b2363f..a4e2862 100644 --- a/src/rrd_info.c +++ b/src/rrd_info.c @@ -21,9 +21,17 @@ char *sprintf_alloc( char *fmt, ...) { - int maxlen = 1024 + strlen(fmt); char *str = NULL; va_list argp; +#ifdef HAVE_VASPRINTF + va_start( argp, fmt ); + if (vasprintf( &str, fmt, argp ) == -1){ + va_end(argp); + rrd_set_error ("vasprintf failed."); + return(NULL); + } +#else + int maxlen = 1024 + strlen(fmt); str = (char*)malloc(sizeof(char) * (maxlen + 1)); if (str != NULL) { va_start(argp, fmt); @@ -33,6 +41,7 @@ char *sprintf_alloc( vsprintf(str, fmt, argp); #endif } +#endif /* HAVE_VASPRINTF */ va_end(argp); return str; } @@ -169,6 +178,11 @@ rrd_info_t *rrd_info_r( for (i = 0; i < rrd.stat_head->ds_cnt; i++) { + info.u_cnt=i; + cd= rrd_info_push(cd,sprintf_alloc("ds[%s].index", + rrd.ds_def[i].ds_nam), + RD_I_CNT, info); + info.u_str = rrd.ds_def[i].dst; cd = rrd_info_push(cd, sprintf_alloc("ds[%s].type", rrd.ds_def[i].ds_nam),