hiredis SET 遇到分段错误
hiredis SET runs into segmentation fault
我正在尝试 SET
使用 hiredis 将一个结构放入 Redis:
struct StatLite
{
uid_t uid;
gid_t gid;
mode_t mode;
}
bool RedisPermissionHandler::Set(std::string path, StatLite stat)
{
redisReply *reply = (redisReply*)redisCommand(this->redis,
"SET %b %b",
path.c_str(), (size_t)path.length(),
stat, (size_t)sizeof(stat));
freeReplyObject(reply);
return true;
}
然而,这在 hiredis 的某处遇到了分段错误。
this->redis
、path
和 stat
具有适当的值。 GET
命令有效并提供 NIL 回复类型(因为 Redis 是空的)。
我做错了什么?
这里的问题是您指定的是原始结构而不是指向该结构的指针:
bool RedisPermissionHandler::Set(std::string path, StatLite stat)
{
redisReply *reply = (redisReply*)redisCommand(this->redis,
"SET %b %b",
path.c_str(), (size_t)path.length(),
&stat, (size_t)sizeof(stat) // Pointer to stat!
);
freeReplyObject(reply);
return true;
}
驱动程序可能正在寻找特定大小的 void*
缓冲区并将 stat
视为 void*
,当该指针被取消引用时导致段错误。
我正在尝试 SET
使用 hiredis 将一个结构放入 Redis:
struct StatLite
{
uid_t uid;
gid_t gid;
mode_t mode;
}
bool RedisPermissionHandler::Set(std::string path, StatLite stat)
{
redisReply *reply = (redisReply*)redisCommand(this->redis,
"SET %b %b",
path.c_str(), (size_t)path.length(),
stat, (size_t)sizeof(stat));
freeReplyObject(reply);
return true;
}
然而,这在 hiredis 的某处遇到了分段错误。
this->redis
、path
和 stat
具有适当的值。 GET
命令有效并提供 NIL 回复类型(因为 Redis 是空的)。
我做错了什么?
这里的问题是您指定的是原始结构而不是指向该结构的指针:
bool RedisPermissionHandler::Set(std::string path, StatLite stat)
{
redisReply *reply = (redisReply*)redisCommand(this->redis,
"SET %b %b",
path.c_str(), (size_t)path.length(),
&stat, (size_t)sizeof(stat) // Pointer to stat!
);
freeReplyObject(reply);
return true;
}
驱动程序可能正在寻找特定大小的 void*
缓冲区并将 stat
视为 void*
,当该指针被取消引用时导致段错误。