Put back return on error
parent
c28ff1f2b4
commit
86e744777c
|
@ -869,8 +869,8 @@ Debug(1, "Loading image");
|
||||||
||
|
||
|
||||||
( fwrite(img_buffer, img_buffer_size, 1, stdout) != 1 )
|
( fwrite(img_buffer, img_buffer_size, 1, stdout) != 1 )
|
||||||
) {
|
) {
|
||||||
//Error("Unable to send stream frame: %s", strerror(errno));
|
Error("Unable to send stream frame: %s", strerror(errno));
|
||||||
//return false;
|
return false;
|
||||||
}
|
}
|
||||||
} // end if send_raw or not
|
} // end if send_raw or not
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue