Merge branch 'knu-fix_opening_attachment'

https://github.com/keepassx/keepassx/pull/71
This commit is contained in:
Felix Geyer 2014-12-22 16:11:48 +01:00
commit 835c411d12

View File

@ -661,7 +661,7 @@ void EditEntryWidget::openAttachment(const QModelIndex& index)
QByteArray attachmentData = m_entryAttachments->value(filename);
// tmp file will be removed once the database (or the application) has been closed
QString tmpFileTemplate = QDir::temp().absoluteFilePath(filename);
QString tmpFileTemplate = QDir::temp().absoluteFilePath(QString("XXXXXX.").append(filename));
QTemporaryFile* file = new QTemporaryFile(tmpFileTemplate, this);
if (!file->open()) {