简单字符串操作中的分段错误

发布于 2024-10-20 04:19:38 字数 320 浏览 2 评论 0原文

该程序在执行时出现分段错误。我该如何解决这个问题?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[])
{
  int bufsize = 1024;
  char *buf;
  char *msg="GET /dumprequest HTTP/1.1";
  memset (buf,0, bufsize);
  strcpy(buf,msg);
  puts(buf);
  return 0;
}

This program is giving segmentation fault on execution. How do I fix that?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char *argv[])
{
  int bufsize = 1024;
  char *buf;
  char *msg="GET /dumprequest HTTP/1.1";
  memset (buf,0, bufsize);
  strcpy(buf,msg);
  puts(buf);
  return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

逐鹿 2024-10-27 04:19:38

您没有为 buf 分配内存。尝试:

const int bufsize = 1024;
char buf[bufsize];

You have no memory allocated for buf. Try:

const int bufsize = 1024;
char buf[bufsize];
苏别ゝ 2024-10-27 04:19:38

memset()strcpy() 的调用尝试写入指向随机位置的指针,而不是 malloc() >ed 内存块,这肯定会导致问题。

The calls to memset() and strcpy() are trying to write to a pointer that is pointing to a random location rather than a malloc()ed block of memory, and that will certainly cause a problem.

嘴硬脾气大 2024-10-27 04:19:38

您需要为 buf 分配一些内存。

buf = (char *) malloc (bufsize);

当你完成后:

free (buf);

或者将其设为 char 数组。

You need to allocate some memory for buf.

Such as

buf = (char *) malloc (bufsize);

And when you're finished:

free (buf);

Or make it a char array.

如何视而不见 2024-10-27 04:19:38

在 Ubuntu 10.10 上使用 gcc 可以运行上面的代码。

malloc() 和 free() 可用于分配一些内存。
free() 在函数末尾被调用。

buf = (char *) malloc (bufsize);

这将为 buf 分配大小为 1024 的内存。

Using gcc on Ubuntu 10.10 the above code works.

malloc() and free() could be used to allocate some memory.
free() being called at the end of the function.

buf = (char *) malloc (bufsize);

This will allocate memory of the size 1024 for the buf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文