We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb05cad commit 5305c33Copy full SHA for 5305c33
.lsan_suppressions
@@ -0,0 +1 @@
1
+leak:libfontconfig.so
pm3
@@ -23,7 +23,11 @@ else
23
# hope it's installed somehow, still not sure where fw images are...
24
CLIENT="proxmark3"
25
fi
26
-
+EVALENV=""
27
+# LeakSanitizer suppressions
28
+if [ -e .lsan_suppressions ]; then
29
+ EVALENV="export LSAN_OPTIONS=suppressions=.lsan_suppressions"
30
+fi
31
PM3LIST=()
32
SHOWLIST=false
33
@@ -212,7 +216,7 @@ function get_pm3_list_WSL {
212
216
SCRIPT=$(basename -- "$0")
213
217
214
218
if [ "$SCRIPT" = "pm3" ]; then
215
- CMD() { $CLIENT "$@"; }
219
+ CMD() { eval "$EVALENV"; $CLIENT "$@"; }
220
HELP() {
221
cat << EOF
222
0 commit comments