Skip to content
Snippets Groups Projects
Commit 26437539 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Solved a minor bug in the image buffer checkings.

parent bb6b8ef7
No related branches found
No related tags found
No related merge requests found
......@@ -272,14 +272,14 @@ void CBumblebee::get_stereo_image(char **left,char **right)
}
}
void Cbumblebee::get_stereo_image_shared(char *left,char *right)
void CBumblebee::get_stereo_image_shared(char *left,char *right)
{
int depth;
dc1394error_t error;
dc1394video_frame_t *frame;
unsigned char *de_interleaved,*RGB_image;
if ( *left != NULL || *right != NULL)
if ( left != NULL || right != NULL)
{
DEBUG_INFO("Invalid image buffer.\n");
/* handle error */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment