mirror of
https://github.com/postgres/postgres.git
synced 2026-04-12 04:26:44 -04:00
Don't try to translate NULL in GetConfigOptionByNum().
Noticed via -fsanitize=undefined. Introduced when a few columns in GetConfigOptionByNum() / pg_settings started to be translated in72be8c29a/ PG 12. Backpatch to all affected branches, for the same reasons as46ab07ffda. Discussion: https://postgr.es/m/20220323173537.ll7klrglnp4gn2um@alap3.anarazel.de Backpatch: 12-
This commit is contained in:
parent
c5b60a68cc
commit
61a007feed
1 changed files with 1 additions and 1 deletions
|
|
@ -9051,7 +9051,7 @@ GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
|
|||
values[4] = _(conf->short_desc);
|
||||
|
||||
/* extra_desc */
|
||||
values[5] = _(conf->long_desc);
|
||||
values[5] = conf->long_desc != NULL ? _(conf->long_desc) : NULL;
|
||||
|
||||
/* context */
|
||||
values[6] = GucContext_Names[conf->context];
|
||||
|
|
|
|||
Loading…
Reference in a new issue