1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-12 23:23:54 +00:00

(trunk libT) fix an r7441 function pointer error reported by fulgas in #transmission

This commit is contained in:
Charles Kerr 2008-12-21 00:05:54 +00:00
parent 72ded3b272
commit cb5d259f21

View file

@ -333,7 +333,8 @@ event_write_cb( int fd, short event UNUSED, void * vio )
return;
error:
io->gotError( io, what, io->userData );
if( io->gotError != NULL )
io->gotError( io, what, io->userData );
}
/**