gpt4 book ai didi

c++ - 当在不同函数中调用 mysql_store_result() 时,mysql_free_result() 出现段错误

转载 作者:行者123 更新时间:2023-11-29 00:12:57 26 4
gpt4 key购买 nike

<分区>

我正在使用 C++ 进行编程,并希望将 mysql_store_result() 包装在一个函数中,该函数将调用包围在互斥锁中。当我调用 mysql_free_result() 时,这会导致段错误。如果我在函数中没有 mysql_store_result() 并将其包装在互斥锁中,它就可以正常工作。

void getList() {
if (query == SUCCESS) {
MYSQL_RES *res_set;

//MySQLStoreResult(res_set);

// If I uncomment the line above the program set faults below.
// If I uncomment the lines below the program works fine.

/*mutex.lock();
res_set = mysql_store_result(mysql);
mutex.unlock();*/

unsigned int num_rows = mysql_num_rows(res_set);

if (num_rows > 0) {
//loop through all the rows using mysql_fetch_rows()

mysql_free_result(res_set); // seg fault
}
}
}

void MySQLStoreResult(MYSQL_RES *res_set) {
mutex.lock();
res_set = mysql_store_result(mysql);
mutex.unlock();
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com