Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 632628
Collapse All | Expand All

(-)file_not_specified_in_diff (-7 / +7 lines)
Line  Link Here
0
-- db-4.8.30/repmgr/repmgr_net.c
0
++ db-4.8.30-format-security/repmgr/repmgr_net.c
Lines 1331-1337 __repmgr_listen(env) Link Here
1331
	}
1331
	}
1332
1332
1333
	ret = net_errno;
1333
	ret = net_errno;
1334
	__db_err(env, ret, why);
1334
	__db_err(env, ret, "%s", why);
1335
clean:	if (s != INVALID_SOCKET)
1335
clean:	if (s != INVALID_SOCKET)
1336
		(void)closesocket(s);
1336
		(void)closesocket(s);
1337
	return (ret);
1337
	return (ret);
1338
-- db-4.8.30/crypto/aes_method.c
1338
++ db-4.8.30-format-security/crypto/aes_method.c
Lines 267-272 __aes_err(env, err) Link Here
267
		errstr = "AES error unrecognized";
267
		errstr = "AES error unrecognized";
268
		break;
268
		break;
269
	}
269
	}
270
	__db_errx(env, errstr);
270
	__db_errx(env, "%s", errstr);
271
	return;
271
	return;
272
}
272
}
273
-- db-4.8.30/txn/txn.c
273
++ db-4.8.30-format-security/txn/txn.c
Lines 168-174 __txn_begin(env, ip, parent, txnpp, flag Link Here
168
168
169
	*txnpp = NULL;
169
	*txnpp = NULL;
170
	if ((ret = __os_calloc(env, 1, sizeof(DB_TXN), &txn)) != 0) {
170
	if ((ret = __os_calloc(env, 1, sizeof(DB_TXN), &txn)) != 0) {
171
		__db_errx(env, TxnAlloc);
171
		__db_errx(env, "%s", TxnAlloc);
172
		return (ret);
172
		return (ret);
173
	}
173
	}
174
174
Lines 315-321 __txn_compensate_begin(env, txnpp) Link Here
315
	int ret;
315
	int ret;
316
316
317
	if ((ret = __os_calloc(env, 1, sizeof(DB_TXN), &txn)) != 0) {
317
	if ((ret = __os_calloc(env, 1, sizeof(DB_TXN), &txn)) != 0) {
318
		__db_errx(env, TxnAlloc);
318
		__db_errx(env, "%s", TxnAlloc);
319
		return (ret);
319
		return (ret);
320
	}
320
	}
321
321

Return to bug 632628