Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-12-05 | Fixed MutexLocker to not work on a copy | Bjørn Lindeijer | 1 | -5/+8 | |
The Mutex class wasn't meant to be copied around. Silly last minute refactorings leading to untested code... | |||||
2008-12-05 | Fix race condition with a std::string access | Bjørn Lindeijer | 1 | -0/+94 | |
The downloading thread was writing to a std::string while the main thread was trying to draw it, for example. Now access to the label caption is guarded with a mutex. Should fix crashes while downloading updates. |