Skip to content

Commit 25a4e6f

Browse files
author
Dan Terpstra
committed
Repairing more coverity warnings.
1 parent e852680 commit 25a4e6f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/net/linux-net.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ read_net_counters( long long *values )
212212
if (fin == NULL) {
213213
SUBDBG("Can't find %s, are you sure the /proc file-system is mounted?\n",
214214
NET_PROC_FILE);
215-
fclose(fin);
216215
return NET_INVALID_RESULT;
217216
}
218217

@@ -221,6 +220,7 @@ read_net_counters( long long *values )
221220
retval = fgets (line, NET_PROC_MAX_LINE, fin);
222221
if (retval == NULL) {
223222
SUBDBG("Not enough lines in %s\n", NET_PROC_FILE);
223+
fclose(fin);
224224
return 0;
225225
}
226226
}
@@ -308,10 +308,10 @@ _net_init_substrate( int cidx )
308308
if ( is_initialized )
309309
return PAPI_OK;
310310

311-
memset(_net_register_start, (long long)NET_MAX_COUNTERS,
312-
sizeof(_net_register_start[0]));
313-
memset(_net_register_current, (long long)NET_MAX_COUNTERS,
314-
sizeof(_net_register_current[0]));
311+
memset(_net_register_start, 0,
312+
NET_MAX_COUNTERS*sizeof(_net_register_start[0]));
313+
memset(_net_register_current, 0,
314+
NET_MAX_COUNTERS*sizeof(_net_register_current[0]));
315315

316316
is_initialized = 1;
317317

0 commit comments

Comments
 (0)