Why does this return no warnings? What is supposed to be wrong with the code?
char *str = malloc(strlen("hello" + 1));
strcpy(str, "hello");
Thanks!
|
|
This
is nearly equivalent to:
so The end result is that |
||||
|
|
|
Why would you expect warnings? The code is broken because you should be doing |
|||||||||
|
|
The below statement is incorrect.
It should be
strlen in this case would probably return you a value of 4 instead of 5 and strcpy will lead to Out of Bounds write. Execute the program with a memory analyzer and it shall point out an error to you. |
|||
|
|