asprintf
我有以下代码在同时使用和时不起作用realloc
。
我得到的错误是:
*** glibc detected *** a.out: realloc(): invalid old size: 0x006f1430 ***
根据我的研究,当我使用asprintf
它时,它看起来会覆盖一些realloc
使用的内存。这对我来说没有意义,因为asprintf
它应该是安全的并且使用适当的字符串长度动态分配。不使用asprintf
会导致程序运行良好,但我需要asprintf
我的项目的功能。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main() {
int ifCount = 1;
int stringCount = 1;
char** IFs = NULL;
//Broken code
char* message;
asprintf(&message, "Hello: %d", stringCount);
//Working code, but not the alternative I want to take
//char* message = "Hello";
IFs = (char**) realloc(IFs, sizeof(char*) * ifCount);
IFs[ifCount - 1] = (char*) realloc(IFs[ifCount - 1], sizeof(char) * strlen(message));
strcpy(IFs[ifCount - 1], message);
printf("Message: %s\n", message);
printf("Copy: %s\n", IFs[ifCount - 1]);
free(message);
}