Oracle Solaris Studio 12.2 Discover および Uncover ユーザーズガイド

ABW


#include <stdlib.h>
int main()
{
  //  ABW:  writing to memory beyond array bounds
  int *a = (int*) malloc(sizeof(int[5]));
  a[5] = 5;
}