Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 170971
Collapse All | Expand All

(-)players.c.old (-1 / +2 lines)
Lines 306-315 Link Here
306
	    int bytes_read;
306
	    int bytes_read;
307
	    player->actual_length = 0;
307
	    player->actual_length = 0;
308
	    do {
308
	    do {
309
		bytes_read = ESD_READ_BIN( player->source_id,
309
		ESD_READ_BIN( player->source_id,
310
			      player->data_buffer + player->actual_length, 
310
			      player->data_buffer + player->actual_length, 
311
			      player->buffer_length - player->actual_length,
311
			      player->buffer_length - player->actual_length,
312
			      actual, "str rd" );
312
			      actual, "str rd" );
313
		bytes_read = actual;
313
		if (bytes_read < player->buffer_length - player->actual_length)
314
		if (bytes_read < player->buffer_length - player->actual_length)
314
			break;
315
			break;
315
		
316
		

Return to bug 170971