Commit 4536532e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix uninitialized variable

parent 770ea21e
...@@ -63,7 +63,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) : ...@@ -63,7 +63,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
b_video = false; b_video = false;
timeA = 0; timeA = 0;
timeB = 0; timeB = 0;
f_cache = -1.; /* impossible initial value, different from all */
} }
InputManager::~InputManager() InputManager::~InputManager()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment