summaryrefslogtreecommitdiffstats
path: root/subsurface-core/qthelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-core/qthelper.cpp')
-rw-r--r--subsurface-core/qthelper.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/subsurface-core/qthelper.cpp b/subsurface-core/qthelper.cpp
index 4efe57bd4..915f2636c 100644
--- a/subsurface-core/qthelper.cpp
+++ b/subsurface-core/qthelper.cpp
@@ -1014,11 +1014,7 @@ QString fileFromHash(char *hash)
void updateHash(struct picture *picture) {
QByteArray hash = hashFile(fileFromHash(picture->hash));
- QMutexLocker locker(&hashOfMutex);
- hashOf[QString(picture->filename)] = hash;
- char *old = picture->hash;
- picture->hash = strdup(hash.toHex());
- free(old);
+ learnHash(picture, hash);
}
void hashPicture(struct picture *picture)