Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
V2548. MISRA. The address of an...
menu mobile close menu
Additional information
toggle menu Contents

V2548. MISRA. The address of an object with local scope should not be passed out of its scope.

Jun 05 2019

This diagnostic rule is based on the software development guidelines developed by MISRA (Motor Industry Software Reliability Association).

Copying an object's address to a pointer/reference with a long lifetime may cause that pointer/reference to become "dangling" after the original object has ceased to exist. This is a case of memory safety violation. Using data referenced by a "dangling" pointer/reference leads to undefined behavior.

First example of non-compliable code:

int& Foo( void )
{
  int some_variable;
  ....
  return some_variable;
}

Second example of non-compliable code:

#include <stddef.h>
void Bar( int **ptr )
{
  int some_variable;
  ....
  if (ptr != NULL)
    *ptr = &some_variable;
}

This diagnostic is classified as:

  • MISRA-C-2012-18.6
  • MISRA-C-2023-18.6
  • MISRA-CPP-2008-7.5.2