Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
>
Examples of errors detected by the...

Examples of errors detected by the V675 diagnostic

V675. Writing into read-only memory.


Tizen

V675 Calling the 'strncat' function will cause the writing into the read-only memory. Inspect the first argument. media-content_test.c 2952


int test_batch_operations()
{
  ....
  char *condition = "MEDIA_PATH LIKE \'";
  strncat(condition,
    tzplatform_mkpath(TZ_USER_CONTENT, "test/image%%jpg\'"), 17);
  ....
}