mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 09:40:40 -04:00
Add missing check for malloc failure in plpgsql_extra_checks_check_hook().
Per report from Andreas Seltenreich. Back-patch to affected versions. Report: <874m8nn0hv.fsf@elite.ansel.ydns.eu>
This commit is contained in:
parent
def0eae4f2
commit
1d07722f01
1 changed files with 2 additions and 0 deletions
|
|
@ -110,6 +110,8 @@ plpgsql_extra_checks_check_hook(char **newvalue, void **extra, GucSource source)
|
|||
}
|
||||
|
||||
myextra = (int *) malloc(sizeof(int));
|
||||
if (!myextra)
|
||||
return false;
|
||||
*myextra = extrachecks;
|
||||
*extra = (void *) myextra;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue