Fix CppCheck in framecatcher.cpp

/retroshare-gui/src/util/framecatcher.cpp:28: warning:
Cppcheck(uninitMemberVar): Member variable 'framecatcher::length' is not
initialized in the constructor.
This commit is contained in:
Phenom 2017-08-15 19:11:32 +02:00 committed by csoler
parent deb6693248
commit 0b8d684195

View File

@ -25,7 +25,7 @@
#include <iostream>
framecatcher::framecatcher(): xine(NULL), stream(NULL), vo_port(NULL){
framecatcher::framecatcher(): xine(NULL), stream(NULL), vo_port(NULL) , length(0){
// start up drivers
std::string vo_driver = "auto";