Skip to content

Commit

Permalink
fix #127999999999, rtems allow variable length queue msgs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Price committed Aug 20, 2022
1 parent 07a134f commit 3d064ad
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/os/rtems/src/os-impl-queues.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,6 @@ int32 OS_QueueGet_Impl(const OS_object_token_t *token, void *data, size_t size,
if (status == RTEMS_SUCCESSFUL)
{
*size_copied = rtems_size;
if (rtems_size != size)
{
/* Success, but the size was wrong */
return_code = OS_QUEUE_INVALID_SIZE;
}
}
else
{
Expand Down

0 comments on commit 3d064ad

Please sign in to comment.