Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
>
owncloud-client211
> fixnullptr.diff
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File fixnullptr.diff of Package owncloud-client211
diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp index 18759a6..0fe8b19 100644 --- a/src/gui/folderman.cpp +++ b/src/gui/folderman.cpp @@ -672,7 +672,7 @@ void FolderMan::slotStartScheduledFolderSync() } // Find the first folder in the queue that can be synced. - Folder* f = nullptr; + Folder* f = 0; // nullptr; while( !_scheduleQueue.isEmpty() ) { f = _scheduleQueue.dequeue(); Q_ASSERT(f);