xdrmem_create 分段错误
#define BS 1000
XDR *xdrs;
char buf1[BS];
xdrmem_create(xdrs,buf1,BS,XDR_ENCODE);
我按照课本上的内容进行操作,但是每当我运行程序时,它都会出现分段错误。 我认为 xdrmem_create 有问题。这里有人使用这个功能成功过吗?
(我使用的是Ubuntu 10.10)
#define BS 1000
XDR *xdrs;
char buf1[BS];
xdrmem_create(xdrs,buf1,BS,XDR_ENCODE);
I followed what the text book said but whenever I ran my program, it has segmentation fault.
I think there is problem with xdrmem_create. Has anybody here been successful when using this function?
(I'm using Ubuntu 10.10)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有初始化指针。使固定:
You didn't initialize the pointer. Fix: