mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
Fix possible NULL-pointer-deference in backup_compression.c.
Per Coverity and Tom Lane. Reviewed by Tom Lane and Justin Pryzby. Discussion: http://postgr.es/m/384291.1648403267@sss.pgh.pa.us
This commit is contained in:
parent
027fa0fd72
commit
8e053dc6df
@ -191,8 +191,16 @@ parse_bc_specification(bc_algorithm algorithm, char *specification,
|
||||
if (value != NULL)
|
||||
pfree(value);
|
||||
|
||||
/* If we got an error or have reached the end of the string, stop. */
|
||||
if (result->parse_error != NULL || *kwend == '\0' || *vend == '\0')
|
||||
/*
|
||||
* If we got an error or have reached the end of the string, stop.
|
||||
*
|
||||
* If there is no value, then the end of the keyword might have been
|
||||
* the end of the string. If there is a value, then the end of the
|
||||
* keyword cannot have been the end of the string, but the end of the
|
||||
* value might have been.
|
||||
*/
|
||||
if (result->parse_error != NULL ||
|
||||
(vend == NULL ? *kwend == '\0' : *vend == '\0'))
|
||||
break;
|
||||
|
||||
/* Advance to next entry and loop around. */
|
||||
|
Loading…
Reference in New Issue
Block a user