mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-11-22 10:02:43 -05:00
RGB: fix Use-of-uninitialized-value
This commit is contained in:
committed by
Albert Astals Cid
parent
7202e77c74
commit
a8ad7be1cd
@ -338,6 +338,9 @@ bool SGIImagePrivate::readImage(QImage &img)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for (; l < _numrows; l++) {
|
||||||
|
_lengthtab[l] = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_stream.status() != QDataStream::Ok) {
|
if (_stream.status() != QDataStream::Ok) {
|
||||||
|
|||||||
Reference in New Issue
Block a user