diff options
Diffstat (limited to 'recipes/librfid/files/015-no_segfault.patch')
-rw-r--r-- | recipes/librfid/files/015-no_segfault.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/librfid/files/015-no_segfault.patch b/recipes/librfid/files/015-no_segfault.patch new file mode 100644 index 0000000000..3df1c96f24 --- /dev/null +++ b/recipes/librfid/files/015-no_segfault.patch @@ -0,0 +1,16 @@ +Index: utils/librfid-tool.c +=================================================================== +--- x/utils/librfid-tool.c (revision 2089) ++++ x/utils/librfid-tool.c (working copy) +@@ -456,6 +456,10 @@ + + if (rh->reader->l2_supported & (1 << layer2)) { + l2h = rfid_layer2_init(rh, layer2); ++ if (!l2h) { ++ printf("error during layer2(%d)_init (0=14a,1=14b,3=15)\n",layer2); ++ return; ++ } + printf("Layer2 init ok\n"); + rc = rfid_layer2_open(l2h); + } else { + |