mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
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:
parent
deb6693248
commit
0b8d684195
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user