This website uses cookies and other technology to provide you a more personalized
experience. By
continuing the view of our web-pages you accept the terms of using these files. If you
don't
want your personal data to be processed, please, leave this site.
Learn More →
Examples of errors detected by the V647 diagnostic
V647. Value of 'A' type is assigned to a pointer of 'B' type.
Tizen
V647 The value of 'int' type is assigned to the pointer of 'int' type. surveillance_test_suite.c 928
void person_recognized_cb(
mv_surveillance_event_trigger_h handle,
mv_source_h source,
int video_stream_id,
mv_surveillance_result_h event_result,
void *user_data)
{
....
int *labels = malloc(sizeof(int) * number_of_persons);
....
}
The thing that the malloc function has not been declared, so there is no #include <stdlib.h> anywhere. Details: https://www.viva64.comhttps://pvs-studio.com/en/blog/posts/cpp/a0065/