- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经开发了一个可以在 c 编程语言中调整大小的动态字符串,但是我有一些无效的读取 valgrind 报告给我,我试图找出原因,但我失败了:
PS:程序运行正常。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "error.h"
#include "dstring.h"
#define DEFAULT_SIZE 512
struct dstring {
char *str;
char *estr;
size_t msize;
};
lgw_return lgw_init_dstring(struct dstring **dstr, const char *data)
{
size_t len;
if((*dstr = malloc(sizeof *dstr)) == NULL)
return LGW_ERROR_MALLOC;
if(data != NULL) {
// intiliaze dstring with value of data
len = strlen(data);
if(((*dstr)->str = malloc(len + DEFAULT_SIZE)) == NULL) {
free(*dstr);
return LGW_ERROR_MALLOC;
}
strcpy((*dstr)->str, data);
(*dstr)->estr = (*dstr)->str + len;
(*dstr)->msize = len + DEFAULT_SIZE;
}
else {
// create empty dstring
if(((*dstr)->str = malloc(DEFAULT_SIZE)) == NULL) {
free(*dstr);
return LGW_ERROR_MALLOC;
}
*((*dstr)->str) = '\0';
(*dstr)->estr = (*dstr)->str;
(*dstr)->msize = DEFAULT_SIZE;
}
return LGW_SUCCESS;
}
lgw_return lgw_destroy_dstring(struct dstring **dstr)
{
free((*dstr)->str);
free(*dstr);
*dstr = NULL;
return LGW_SUCCESS;
}
lgw_return lgw_write_dstring(struct dstring *dstr, const char *data, size_t off)
{
size_t datalen = strlen(data);
char *tmp_str;
//if offset is beyond the '\0' char return error
if(off > dstr->estr - dstr->str)
return LGW_OUT_OF_RANGE;
if(off + datalen > dstr->msize) {
if((tmp_str = realloc(dstr->str, dstr->msize +
datalen + DEFAULT_SIZE)) == NULL)
return LGW_ERROR_MALLOC;
dstr->str = tmp_str;
dstr->msize += datalen + DEFAULT_SIZE;
}
strcpy(dstr->str + off, data);
dstr->estr = dstr->str + off + datalen;
return LGW_SUCCESS;
}
lgw_return lgw_append_dstring(struct dstring *dstr, const char *data)
{
return lgw_write_dstring(dstr, data, dstr->estr - dstr->str);
}
const char *lgw_get_dstring(struct dstring *dstr)
{
return (const char *)(dstr->str);
}
#ifndef DSTRING_H_INCLUDED
#define DSTRING_H_INCLUDED
#include "error.h"
typedef struct dstring DynamicString;
lgw_return lgw_init_dstring(struct dstring **dstr, const char *data);
lgw_return lgw_destroy_dstring(struct dstring **dstr);
lgw_return lgw_write_dstring(struct dstring *dstr, const char *data, size_t off);
lgw_return lgw_append_dstring(struct dstring *dstr, const char *data);
const char *lgw_get_dstring(struct dstring *dstr);
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "error.h"
#include "dstring.h"
int main()
{
lgw_return rc;
DynamicString *s;
if((rc =lgw_init_dstring(&s, "test")) != LGW_SUCCESS) {
fprintf(stderr, "ERROR : %s", lgw_strerror(rc));
exit(EXIT_FAILURE);
}
lgw_append_dstring(s, "123");
const char *str = lgw_get_dstring(s);
printf("value is : %s\n", str);
lgw_destroy_dstring(&s);
}
==6919== Memcheck, a memory error detector
==6919== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
==6919== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==6919== Command: ./a.out
==6919==
==6919== Invalid write of size 8
==6919== at 0x40084A: lgw_init_dstring (dstring.c:33)
==6919== by 0x400AD7: main (test.c:14)
==6919== Address 0x51de048 is 0 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
==6919== Invalid write of size 8
==6919== at 0x400860: lgw_init_dstring (dstring.c:34)
==6919== by 0x400AD7: main (test.c:14)
==6919== Address 0x51de050 is 8 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
==6919== Invalid read of size 8
==6919== at 0x400A30: lgw_append_dstring (dstring.c:87)
==6919== by 0x400B21: main (test.c:19)
==6919== Address 0x51de048 is 0 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
==6919== Invalid read of size 8
==6919== at 0x40093C: lgw_write_dstring (dstring.c:65)
==6919== by 0x400A59: lgw_append_dstring (dstring.c:87)
==6919== by 0x400B21: main (test.c:19)
==6919== Address 0x51de048 is 0 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
==6919== Invalid read of size 8
==6919== at 0x40096F: lgw_write_dstring (dstring.c:68)
==6919== by 0x400A59: lgw_append_dstring (dstring.c:87)
==6919== by 0x400B21: main (test.c:19)
==6919== Address 0x51de050 is 8 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
==6919== Invalid write of size 8
==6919== at 0x400A11: lgw_write_dstring (dstring.c:80)
==6919== by 0x400A59: lgw_append_dstring (dstring.c:87)
==6919== by 0x400B21: main (test.c:19)
==6919== Address 0x51de048 is 0 bytes after a block of size 8 alloc'd
==6919== at 0x4C28C20: malloc (vg_replace_malloc.c:296)
==6919== by 0x4007A0: lgw_init_dstring (dstring.c:20)
==6919== by 0x400AD7: main (test.c:14)
==6919==
value is : test123
==6919==
==6919== HEAP SUMMARY:
==6919== in use at exit: 0 bytes in 0 blocks
==6919== total heap usage: 2 allocs, 2 frees, 524 bytes allocated
==6919==
==6919== All heap blocks were freed -- no leaks are possible
==6919==
==6919== For counts of detected and suppressed errors, rerun with: -v
==6919== ERROR SUMMARY: 6 errors from 6 contexts (suppressed: 0 from 0)
最佳答案
您为分配结构指定了错误的内存量:
if((*dstr = malloc(sizeof *dstr)) == NULL)
既然dstr是(struct dstr **),那么sizeof(*dstr)就是指针的大小,而不是结构体的大小。要解决这个问题,您可能需要这样写:
if((*dstr = malloc(sizeof **dstr)) == NULL)
关于c - 大小 8 valgrind 的无效写入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28585777/
我希望 valgrind 在发现第一个错误时停止并退出。 请勿推荐 --vgdb-error=1 :它不会退出 valgrind。您必须连接 gdb 并从那里终止。 --db-attach : 在最近
有人可以快速解释 Valgrind 的工作原理吗?一个例子:它如何知道内存何时被分配和释放? 最佳答案 Valgrind 基本上在“沙箱”中运行您的应用程序。在此沙箱中运行时,它能够插入自己的指令来进
我有一个因 SIGSEGV 而崩溃的应用程序。 --20183-- VALGRIND INTERNAL ERROR: Valgrind received a signal 11 (SIGSEGV) -
我有一个因 SIGSEGV 而崩溃的应用程序。 --20183-- VALGRIND INTERNAL ERROR: Valgrind received a signal 11 (SIGSEGV) -
我想使用 valgrind 检查长时间运行的进程是否存在内存泄漏。我怀疑我所追求的内存泄漏可能仅在执行几个小时后才会发生。我可以在 valgrind 下运行应用程序并获取 valgrind 日志,但这
我想用 valgrind 检查一个长时间运行的进程是否有内存泄漏。我怀疑我所追求的内存泄漏可能仅在执行数小时后才会发生。我可以在 valgrind 下运行应用程序并获得 valgrind 日志,但这样
如何在不通过 valgrind 命令选项启动它的情况下对每个 Process 实例执行 valgrind memcheck。 有没有办法将监控选项保存在进程中,而不是每次都使用 valgrind 命令
我使用了“--trace-children=yes”选项,我还使用了“--trace-children-skip=patt1,patt2,...”选项(过滤掉噪音过程)。但它对我来说仍然很慢,我的多进
我从 Valgrind 得到以下日志: MPK ==5263== 4 bytes in 1 blocks are still reachable in loss record 1 of 84 ==52
如何在 Valgrind 抑制文件中添加注释? 我需要为一个大型项目维护一个 Valgrind 抑制文件。我们从我们链接到的工具中过滤无法修复的错误。随着工具的新版本发布,此文件可能需要随着时间的推移
我有一个大程序要运行。使用 valgrind 需要几个小时才能运行。我听说有一些东西可以让我们为程序中的特定函数调用 valgrind。其余程序将正常执行(没有 valgrind env)。 任何人都
我可以用 valgrind 检测整数溢出缺陷吗?里面的哪个工具可以做到这一点? 最佳答案 Valgrind 没有可以检测整数溢出的工具。 您可能会使用 gcc 选项捕获这些错误: -ftrapv Th
我有一个简单的程序: int main(void) { const char sname[]="xxx"; sem_t *pSemaphor; if ((pSemaphor = sem_o
如何让 Valgrind 准确显示错误发生的位置?我编译了我的程序(通过 PuTTy 在 Windows 机器上通过 Linux 终端)添加了 -g 调试选项。 当我运行 Valgrind 时,我得到
或者最好是全部,而不仅仅是我的代码?我的程序使用 Gtk、Loudmouth 和其他一些东西,而这两个(以及它们背后的一些,libgcrypto、libssl)本身导致了如此多的错误,以至于我无法检测
我想尝试使用 valgrind 进行一些堆损坏检测。通过以下腐败“单元测试”: #include #include #include int main() { char * c = (ch
我看过类似的问题here ,但我的问题是我没有编辑 default.supp 文件的权限。例如,Valgrind 中是否有任何忽略所有抑制文件的命令行选项? 最佳答案 在 Valgrind 3.10.
我在一个运行无限循环的程序上使用 valgrind。 由于memcheck在程序结束后显示内存泄漏,但由于我的程序有无限循环,它永远不会结束。 那么有什么方法可以强制从 valgrind 时不时地转储
我一直在尝试使用 valgrind 查找一些可疑的内存错误。 在被分析的程序甚至到达我希望分析的点之前,它会因为对 mmap 的调用开始失败而退出。当它不在 valgrind 下时,这些调用会成功。
由于 OpenSSL 使用未初始化的内存,因此对使用 openldap2 的 libldap 的程序进行 Valgrind 是一件苦差事。存在一个 --ignore-fn选项,但仅适用于 Valgri
我是一名优秀的程序员,十分优秀!