You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in app/src/apdu_sign.c : 486, buffer’s content as to be zeroized (i.e.,cleared). For this, only the buffer size was reset to zero. In doing so, the data persists in memory, with the risk of being read by another channel.
Reset the buffer and not just its size.
Initialize pressed_right in ui_stream.c and ui_stream_nbgl.c
Fix TODO/NOTE and other comments - check app/src/ui_stream_nbgl.c: 352-354 and app/src/globals.h: 122
Remove redundant check for global.step in app/src/apdu_sign.c : 486
<=0 check is not correct for unsigned int. Fix at app/src/parser/operation_parser.c: 418
fix printf format specifier incompatibility at app/src/apdu_sign.c : 585
The text was updated successfully, but these errors were encountered:
in app/src/apdu_sign.c : 486, buffer’s content as to be zeroized (i.e.,cleared). For this, only the buffer size was reset to zero. In doing so, the data persists in memory, with the risk of being read by another channel.
pressed_right
in ui_stream.c and ui_stream_nbgl.cThe text was updated successfully, but these errors were encountered: