为什么 crypt() 函数没有内存泄漏?
char *crypt(const char *key, const char *salt);
返回值: 返回指向加密密码的指针。出错时,返回NULL
。
由于返回值是未知的,除非给出 key 和 salt,所以这应该是动态分配的内存,但 valgrind 不同意。
From crypt(3) - Linux man page:
char *crypt(const char *key, const char *salt);
Return Value:
A pointer to the encrypted password is returned. On error, NULL
is returned.
Since the return value is unknown unless key and salt is given, this should be dynamically allocated memory, but valgrind doesn't agree.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从手册页:
所以这意味着它不是动态分配的 - 它是单个静态分配(就像全局变量一样)。
From the man page:
So this means it's not dynamically allocated - it's a single static allocation (just like a global variable).
从您链接的页面:
From the page you linked: