Browse Source

Fix uninitialized return value in createVpxImage

pull/553/head
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
eb2b7d03ad
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
  1. 3
      src/video/videoframe.cpp

3
src/video/videoframe.cpp

@ -19,8 +19,7 @@ @@ -19,8 +19,7 @@
vpx_image_t VideoFrame::createVpxImage() const
{
vpx_image img;
img.w = 0;
img.h = 0;
img.w = img.h = img.d_w = img.d_h = 0;
if (!isValid())
return img;

Loading…
Cancel
Save