Skip to content

Commit

Permalink
Merge pull request #157 from LedgerHQ/fbe/increase_decoded_protobuf_b…
Browse files Browse the repository at this point in the history
…uffer_size

Increase decoded protobuf buffer size
  • Loading branch information
fbeutin-ledger authored Nov 14, 2023
2 parents 7e903b3 + a9e00aa commit 8bb47ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ APP_LOAD_PARAMS += $(COMMON_LOAD_PARAMS)
APPNAME = "Exchange"
APPVERSION_M = 3
APPVERSION_N = 3
APPVERSION_P = 1
APPVERSION_P = 2
APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)-dev

ifdef TESTING
Expand Down
2 changes: 1 addition & 1 deletion src/process_transaction.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ static bool deserialize_protobuf_payload(buf_t payload,
void *dest_struct;

// Temporary buffer if the received payload is encoded. Size is arbitrary
unsigned char decoded[256];
unsigned char decoded[512];

buf_t to_deserialize;

Expand Down

0 comments on commit 8bb47ed

Please sign in to comment.