fix another segfault

This commit is contained in:
Isaac Connor 2014-09-08 16:46:41 -04:00 committed by Jan M. Hochstein
parent dade075dfb
commit ebe4842ec2
1 changed files with 7 additions and 7 deletions

View File

@ -2134,13 +2134,13 @@ int LocalCamera::PostCapture()
return( -1 );
}
}
if ( v4l2_data.bufptr ) {
Debug( 3, "Requeueing buffer %d", v4l2_data.bufptr->index );
if ( vidioctl( vid_fd, VIDIOC_QBUF, v4l2_data.bufptr ) < 0 )
{
Error( "Unable to requeue buffer %d: %s", v4l2_data.bufptr->index, strerror(errno) )
return( -1 );
}
if ( v4l2_data ) {
Debug( 3, "Requeueing buffer %d", v4l2_data.bufptr->index );
if ( vidioctl( vid_fd, VIDIOC_QBUF, v4l2_data.bufptr ) < 0 )
{
Error( "Unable to requeue buffer %d: %s", v4l2_data.bufptr->index, strerror(errno) )
return( -1 );
}
} else {
Error( "Unable to requeue buffer due to not v4l2_data" )
}