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
Hey, in both the write and read keys functions, usually the HAVE_ENDIAN is on so the code goes down that path. But if HAVE_ENDIAN is off, then the memcpy has a bug because the source argument is &my_dest in the write function and &rem_dest in the read function, but this will be a pointer to the address instead of the address since my_dest and rem_dest are already the address since they were sent from earlier in the stack in the hand_shake as &my_dest[0]
The text was updated successfully, but these errors were encountered:
perftest/src/perftest_communication.c
Line 464 in d2def67
Hey, in both the write and read keys functions, usually the HAVE_ENDIAN is on so the code goes down that path. But if HAVE_ENDIAN is off, then the memcpy has a bug because the source argument is &my_dest in the write function and &rem_dest in the read function, but this will be a pointer to the address instead of the address since my_dest and rem_dest are already the address since they were sent from earlier in the stack in the hand_shake as &my_dest[0]
The text was updated successfully, but these errors were encountered: