mirror of https://github.com/procxx/kepka.git
Fix crash on invalid lottie file selection.
This commit is contained in:
parent
325323e0b3
commit
a968e112e8
|
@ -308,9 +308,6 @@ void DocumentOpenClickHandler::Open(
|
|||
if (QImageReader(path).canRead()) {
|
||||
Core::App().showDocument(data, context);
|
||||
return;
|
||||
//} else if (Lottie::ValidateFile(path)) {
|
||||
// Core::App().showDocument(data, context);
|
||||
// return;
|
||||
}
|
||||
}
|
||||
LaunchWithWarning(location.name(), context);
|
||||
|
|
|
@ -54,28 +54,13 @@ QByteArray UnpackGzip(const QByteArray &bytes) {
|
|||
|
||||
} // namespace
|
||||
|
||||
bool ValidateFile(const QString &path) {
|
||||
if (!path.endsWith(qstr(".json"), Qt::CaseInsensitive)
|
||||
&& !path.endsWith(qstr(".tgs"), Qt::CaseInsensitive)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
std::unique_ptr<Animation> FromFile(const QString &path) {
|
||||
if (!path.endsWith(qstr(".json"), Qt::CaseInsensitive)
|
||||
&& !path.endsWith(qstr(".tgs"), Qt::CaseInsensitive)) {
|
||||
return nullptr;
|
||||
}
|
||||
auto f = QFile(path);
|
||||
if (!f.open(QIODevice::ReadOnly)) {
|
||||
return nullptr;
|
||||
}
|
||||
const auto content = f.readAll();
|
||||
if (content.isEmpty()) {
|
||||
return nullptr;
|
||||
}
|
||||
return FromData(std::move(content));
|
||||
return FromData([&] {
|
||||
auto f = QFile(path);
|
||||
return (f.size() <= kMaxFileSize && f.open(QIODevice::ReadOnly))
|
||||
? f.readAll()
|
||||
: QByteArray();
|
||||
}());
|
||||
}
|
||||
|
||||
std::unique_ptr<Animation> FromData(const QByteArray &data) {
|
||||
|
|
|
@ -31,7 +31,6 @@ class Animation;
|
|||
class SharedState;
|
||||
class FrameRenderer;
|
||||
|
||||
bool ValidateFile(const QString &path);
|
||||
std::unique_ptr<Animation> FromFile(const QString &path);
|
||||
std::unique_ptr<Animation> FromData(const QByteArray &data);
|
||||
|
||||
|
|
Loading…
Reference in New Issue