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

(-)res/res_convert.c.orig (+2 lines)
Lines 117-125 Link Here
117
	
117
	
118
	while ((f = ast_readframe(fs_in))) {
118
	while ((f = ast_readframe(fs_in))) {
119
		if (ast_writestream(fs_out, f)) {
119
		if (ast_writestream(fs_out, f)) {
120
			ast_filestream_frame_freed(f);
120
			ast_cli(a->fd, "Failed to convert %s.%s to %s.%s!\n", name_in, ext_in, name_out, ext_out);
121
			ast_cli(a->fd, "Failed to convert %s.%s to %s.%s!\n", name_in, ext_in, name_out, ext_out);
121
			goto fail_out;
122
			goto fail_out;
122
		}
123
		}
124
		ast_filestream_frame_freed(f);
123
	}
125
	}
124
126
125
	cost = ast_tvdiff_ms(ast_tvnow(), start);
127
	cost = ast_tvdiff_ms(ast_tvnow(), start);

Return to bug 281471