我有一个从 postgres 客户端(Windows 7)到远程 Postgres 服务器(Ubuntu)的连接 - Postgres 版本 9.5。
postgres 客户端是一个使用嵌入式 sql ( ) 的 c 程序libecpg.dll
。
建立连接后拉网线时,我得到:
...exe 中 0x1000bca0 处的未处理异常:0xC0000005:访问冲突读取位置 0x00000000
在调试器调用堆栈中,最后 4 个条目用于
libecpg.dll: libecpg.dll!100047f7(),
libecpg.dll!100041fd(),
libecpg.dll!10008bc8(),
libecpg.dll!10008431(), ....
做了进一步的研究:
访问冲突发生在函数 fmtstr() 中,因为参数值为 NULL
static void
fmtstr(char *value, int leftjust, int minlen, int maxwidth, int pointflag, PrintfTarget *target)
{
int padlen,
vallen; /* amount to pad */
/*
* If a maxwidth (precision) is specified, we must not fetch more bytes
* than that.
*/
if (pointflag)
vallen = pg_strnlen(value, maxwidth);
else
vallen = strlen(value); // value == NULL
...
参数值由函数 dopr() 中的 va_arg() 调用填充:
static void dopr(PrintfTarget *target, const char *format, va_list args)
...
case 's':
if (!have_star)
{
if (pointflag)
precision = accum;
else
fieldwidth = accum;
}
if (have_dollar)
strvalue = argvalues[fmtpos].cptr;
else
strvalue = va_arg(args, char *);
fmtstr(strvalue, leftjust, fieldwidth, precision, pointflag,
target);
break;
...
仅当我拔出网络电缆时才会发生访问冲突,但如果我停用网络则不会发生访问冲突。
在函数 ecpg_execute() 中:
if (stmt->statement_type == ECPGst_execute) {
...
}
else
{
if (stmt->nparams == 0)
{
**stmt->results** = PQexec(stmt->connection->connection, stmt->command);
ecpg_log("ecpg_execute on line %d: using PQexec\n", stmt->lineno);
}
else
{
stmt->results = PQexecParams(stmt->connection->connection, stmt->command, stmt->nparams, NULL, (const char *const *) stmt->paramvalues, NULL, NULL, 0);
...
}
拔网线时stmt->results不为NULL
停用网络时stmt->results 为 NULL