mirror of https://github.com/procxx/kepka.git
Version 1.1.16: Add some debug info.
This commit is contained in:
parent
c681f75ad3
commit
0e059ec788
|
@ -690,7 +690,10 @@ void mtpFileLoader::partLoaded(int offset, base::const_byte_span bytes) {
|
|||
return cancel(true);
|
||||
}
|
||||
} else {
|
||||
SignalHandlers::setCrashAnnotation("DebugInfo", QString("offset: %1, size: %2").arg(offset).arg(bytes.size()));
|
||||
_data.reserve(offset + bytes.size());
|
||||
SignalHandlers::setCrashAnnotation("DebugInfo", QString());
|
||||
|
||||
if (offset > _data.size()) {
|
||||
_skippedBytes += offset - _data.size();
|
||||
_data.resize(offset);
|
||||
|
|
Loading…
Reference in New Issue