Take the example code*:
char *string = (char*)malloc(sizeof(char));
strcat_s(string, strlen(string) + 10 + 1, "characters");
The above code compiles and runs, leading me to believe that memory reallocation is taking place. However when applied on a greater scale (recursively also), I receive memory errors in random places (different each time the program is run).
Could strcat_s() be exceeding boundaries? Is realloc() therefore required to ensure the memory is properly allocated?
Note: It could be that the errors are unrelated, although they have been coincidentally cropping up after applying the code from the example.
*The reason I've only allocated one byte initially, is that contextually I'm working with dynamic sizes, so the size of string
will change, but by an unknown amount.
Here you allocate exactly 1 char
so the only string the
string
can hold is""
(the zero length string)Then you try to append the string
"characters"
tostring
which cannot hold a string other than""
and which is not initialized. Furthermore the result ofstrlen(string)
will be undetermined, because againstring
is not initialized.You probably want this: