Question: 3.Is this function safe? Justify your answer.(10') (Hint: void *memcpy (void * destination, const void *source, size_t num); ) void function (char *data, int len)

 3.Is this function safe? Justify your answer.(10') (Hint: void *memcpy (void

3.Is this function safe? Justify your answer.(10') (Hint: void *memcpy (void * destination, const void *source, size_t num); ) void function (char *data, int len) { char buf[64]; if (len > 64) return; memcpy (buf, data, len); }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!