~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/loader/icon/IconDatabase.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mto: (4.4.1 sid) (1.2.2 upstream) (16.1.1 lucid)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090515183058-35m5or0ufm5tutud
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
    // completes and m_syncThreadRunning is properly set
136
136
    m_syncLock.lock();
137
137
    m_syncThread = createThread(IconDatabase::iconDatabaseSyncThreadStart, this, "WebCore: IconDatabase");
138
 
    m_syncThreadRunning = m_syncThread;
 
138
    m_syncThreadRunning = m_syncThread.isValid();
139
139
    m_syncLock.unlock();
140
 
    if (!m_syncThread)
141
 
        return false;
142
 
    return true;
 
140
 
 
141
    return m_syncThreadRunning;
143
142
}
144
143
 
145
144
void IconDatabase::close()