What steps will reproduce the problem?
1. ./proxmark3
2. data plot
3. ##segfault## (1 out of 3)
Without this patch I get a segfault every 3 "data plot" command (with or
without data in GraphBuffer[]). My system is x86_64.
Here is the patch:
####################################
Index: proxguiqt.cpp
===================================================================
--- proxguiqt.cpp (revision 465)
+++ proxguiqt.cpp (working copy)
@@ -282,6 +282,8 @@
palette.setColor(QPalette::Button, QColor(100, 100, 100));
setPalette(palette);
setAutoFillBackground(true);
+ CursorAPos = 0;
+ CursorBPos = 0;
}
void ProxWidget::closeEvent(QCloseEvent *event)
####################################
William
Original issue reported on code.google.com by william.robinet on 13 Dec 2010 at 9:25
Original issue reported on code.google.com by
william.robinet
on 13 Dec 2010 at 9:25