Question: void useAfterFree ( ) { char * buffer = malloc ( 1 6 ) ; free ( buffer ) ; strcpy ( buffer , data

void useAfterFree(){
char *buffer = malloc(16);
free(buffer);
strcpy(buffer, "data");
}select one or more :
Perform a bounds check on buffer before using it after freeing.
Avoid freeing the buffer altogether and rely on garbage collection.
Set buffer to NULL after freeing it to avoid using the dangling pointer.
Use memory sanitization techniques to ensure that freed memory is not accessible.

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 Programming Questions!