library: clear rc in procps_loadavg again
During the changes to procps_loadavg I didn't set the initial
value for retval, meaning it was a random number.
It is now correctly intialised to zero.
References:
commit 8fcd14de18
This commit is contained in:
parent
3111334ddd
commit
ce0286daca
@ -92,7 +92,7 @@ PROCPS_EXPORT int procps_loadavg(
|
|||||||
{
|
{
|
||||||
double avg_1=0, avg_5=0, avg_15=0;
|
double avg_1=0, avg_5=0, avg_15=0;
|
||||||
locale_t tmplocale;
|
locale_t tmplocale;
|
||||||
int retval;
|
int retval=0;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
|
|
||||||
if ((fp = fopen(LOADAVG_FILE, "r")) == NULL)
|
if ((fp = fopen(LOADAVG_FILE, "r")) == NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user