- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码在同时使用 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);
}
最佳答案
这个:
IFs[ifCount - 1] = (char*) realloc(IFs[ifCount - 1], sizeof(char) * strlen(message));
正在将未初始化的指针传递给 realloc()
,这是错误的原因。
还有:
strlen(message)
字符太少了 1。这将导致 strcpy()
在复制时发生缓冲区溢出。realloc()
与分配堆内存的所有函数一样,可能会失败。 asprintf()
也是如此。realloc()
in C .sizeof (char)
,因为它始终为 1,所以它给代码增加的值(value)很小。关于c - asprintf 为 realloc 覆盖内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13346334/
我正在使用 asprintf(&somestring,"%s%s",stringone,stringtwo) 来连接字符串。如果我调用一次然后调用 free(somestring) 一次,它工作正常。
我想创建这样的东西: void funkcja(char *charTmp2){ asprintf(&charTmp2, "%i %.2f %s", 2, 3.20, "PIERWSZY");
下面是摘自“21 世纪 C”的片段。如果我在宏 Sasprintf 中使用 free(tmp_string_for_extend) 而不是 free(write_to) 释放内存,我无法弄清楚为什么程
GNU 函数 asprintf(打印到分配的字符串)是线程安全的吗? (IIC,基本上,这归结为 malloc 是否线程安全的问题。) 考虑示例代码: #define _GNU_SOURCE #inc
发现此代码,它需要停止将戴尔笔记本电脑中的 CPU 节流到 20%,这是由于计算机无法识别电源适配器而发生的。 尝试在 Kubuntu 上编译并得到: warning: implicit declar
我想以这种形式显示一个字符串:“在 3 天 00:15:07 内”或“在 00:15:07 内”在天数为 0 的情况下 所以我写了一些代码如下 #include #define LEASE_TIME_
我使用 asprintf 动态分配内存并加载字符串以存储有关工作目录中文件的信息。 在函数 parse_entry 的第 273 次(完全一致)调用中,此行被执行:file->filename_len
我想知道这是否是好的做法: 在函数内从数据库中获取字符串 使用 asprintf 为要存储在传递给函数的结构中的此字符串分配内存 我已经阅读了一些关于 C 中的内存管理和内存泄漏的帖子和文章。除此之外
asprintf说 The functions asprintf() and vasprintf() are analogs of sprintf(3) and vsprintf(3), except
我有这样的代码:我分配了两次 log,第一个 &log 是否有潜在的内存泄漏? char *log = NULL; asprintf(&log, "Hello: %s", name); if (kno
我有以下代码在同时使用 asprintf 和 realloc 时不起作用。 我得到的错误是: *** glibc detected *** a.out: realloc(): invalid old
我有以下代码在同时使用 asprintf 和 realloc 时不起作用。 我得到的错误是: *** glibc detected *** a.out: realloc(): invalid old
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
在我的 autoconf 脚本中: AC_CHECK_FUNC([asprintf], [CONFIGFLAGS+=" -DCB_HAVE_ASPRINTF"], [] ) 这就通过了
我正在尝试学习 C 并希望使用 union。它在我正在寻找的教程中看起来很简单,虽然没有使用 char * 但我不认为它会有所作为。 下面是我的 union 是如何声明的: union MyData
这是一段基于简单结构在套接字上写入 HTTP 响应的代码 void write_response(request *req, response *resp, int socket) { char
我写了一个 C 程序,它在 linux 上运行得很好,但是当我在 windows 上编译它时,它给我一个错误,说 asprintf() 是未定义的。它应该是 stdio 库的一部分,但似乎许多编译器不
我需要一个返回格式化字符串最终长度的 C 函数,这样我就可以正确分配目标字符串,而不是自己计算长度。有 snprintf 可以在无法写入整个字符串时执行此操作,但不幸的是,它没有宽字符替代方案。 sw
我正在尝试在 AIX 上构建 python-kerberos。 kerberospw.c 使用对 asprintf 的调用,但根据 Google 告诉我的信息,asprintf 在 AIX 上不存在。
我很难理解您为什么需要 asprintf。在手册中它说 The functions asprintf() and vasprintf() are analogs of sprintf(3) and v
我是一名优秀的程序员,十分优秀!