Commit 6c3690d8 authored by Magnus Hagander's avatar Magnus Hagander

Don't pass strings directly to errdetail() and errhint() - use

%s to unescape them. Fixes a potential security issue (in as yet
unreleased code)
parent 284491ee
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.224 2008/11/05 00:07:54 tgl Exp $ * $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.225 2008/11/20 15:36:22 mha Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -2538,8 +2538,8 @@ exec_stmt_raise(PLpgSQL_execstate *estate, PLpgSQL_stmt_raise *stmt) ...@@ -2538,8 +2538,8 @@ exec_stmt_raise(PLpgSQL_execstate *estate, PLpgSQL_stmt_raise *stmt)
ereport(stmt->elog_level, ereport(stmt->elog_level,
(err_code ? errcode(err_code) : 0, (err_code ? errcode(err_code) : 0,
errmsg_internal("%s", err_message), errmsg_internal("%s", err_message),
(err_detail != NULL) ? errdetail(err_detail) : 0, (err_detail != NULL) ? errdetail("%s", err_detail) : 0,
(err_hint != NULL) ? errhint(err_hint) : 0)); (err_hint != NULL) ? errhint("%s", err_hint) : 0));
estate->err_text = NULL; /* un-suppress... */ estate->err_text = NULL; /* un-suppress... */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment