当前位置:  开发笔记 > 编程语言 > 正文

分段错误(malloc struct)

如何解决《分段错误(mallocstruct)》经验,为你挑选了1个好方法。



1> Iharob Al As..:

你永远不用于分配空间comp->highest_committed_vs,你检查compNULL非关联化之后.试试这样吧

int main() 
{
    consensus_component *comp = malloc(sizeof(consensus_component));
    if (comp == NULL)
        return -1;
    memset(comp, 0, sizeof(consensus_component));
    comp->highest_committed_vs = malloc(sizeof(*comp->highest_committed_vs));
    if (comp->highest_committed_vs == NULL)
    {
        free(comp);
        return -1;
    }

    comp->highest_committed_vs->view_id = 1; 
    comp->highest_committed_vs->req_id = 0;

    db_key_type start = vstol(comp->highest_committed_vs)+1;
    printf("%" PRIu64 "\n", start);

    return 0;
}

推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有