File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ read_net_counters( long long *values )
212
212
if (fin == NULL ) {
213
213
SUBDBG ("Can't find %s, are you sure the /proc file-system is mounted?\n" ,
214
214
NET_PROC_FILE );
215
- fclose (fin );
216
215
return NET_INVALID_RESULT ;
217
216
}
218
217
@@ -221,6 +220,7 @@ read_net_counters( long long *values )
221
220
retval = fgets (line , NET_PROC_MAX_LINE , fin );
222
221
if (retval == NULL ) {
223
222
SUBDBG ("Not enough lines in %s\n" , NET_PROC_FILE );
223
+ fclose (fin );
224
224
return 0 ;
225
225
}
226
226
}
@@ -308,10 +308,10 @@ _net_init_substrate( int cidx )
308
308
if ( is_initialized )
309
309
return PAPI_OK ;
310
310
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 ]));
315
315
316
316
is_initialized = 1 ;
317
317
You can’t perform that action at this time.
0 commit comments