Browse Source

Cannot access members after they are freed :/

dynamic-accesslists
erdgeist 17 years ago
parent
commit
6eb441d8a0
  1. 2
      opentracker.c

2
opentracker.c

@ -647,10 +647,10 @@ static void handle_timeouted( void ) {
while( ( i = io_timeouted() ) != -1 ) { while( ( i = io_timeouted() ) != -1 ) {
struct http_data* h=io_getcookie( i ); struct http_data* h=io_getcookie( i );
if( h ) { if( h ) {
iob_reset( &h->batch );
array_reset( &h->request ); array_reset( &h->request );
free( h ); free( h );
} }
iob_reset( &h->batch );
io_close(i); io_close(i);
} }
} }

Loading…
Cancel
Save