mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-13 18:17:25 -07:00
fix coverity warnings
This commit is contained in:
parent
0a9d2ca03d
commit
4763eb417a
2 changed files with 5 additions and 9 deletions
client
|
@ -189,9 +189,6 @@ int CmdLFCommandRead(const char *Cmd) {
|
|||
int CmdFlexdemod(const char *Cmd) {
|
||||
(void)Cmd; // Cmd is not used so far
|
||||
|
||||
if (GraphTraceLen < 0)
|
||||
return 0;
|
||||
|
||||
#ifndef LONG_WAIT
|
||||
#define LONG_WAIT 100
|
||||
#endif
|
||||
|
|
|
@ -276,9 +276,11 @@ QColor Plot::getColor(int graphNum) {
|
|||
|
||||
void Plot::setMaxAndStart(int *buffer, size_t len, QRect plotRect) {
|
||||
if (len == 0) return;
|
||||
startMax = (len - (int)((plotRect.right() - plotRect.left() - 40) / GraphPixelsPerPoint));
|
||||
if (startMax < 0) {
|
||||
startMax = 0;
|
||||
startMax = 0;
|
||||
if (plotRect.right() >= plotRect.left() + 40) {
|
||||
uint32_t t = (plotRect.right() - plotRect.left() - 40) / GraphPixelsPerPoint;
|
||||
if (len >= t)
|
||||
startMax = len - t;
|
||||
}
|
||||
if (GraphStart > startMax) {
|
||||
GraphStart = startMax;
|
||||
|
@ -470,9 +472,6 @@ void Plot::paintEvent(QPaintEvent *event) {
|
|||
|
||||
painter.setFont(QFont("Courier New", 10));
|
||||
|
||||
if (GraphStart < 0)
|
||||
GraphStart = 0;
|
||||
|
||||
if (CursorAPos > GraphTraceLen)
|
||||
CursorAPos = 0;
|
||||
if (CursorBPos > GraphTraceLen)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue