mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Consistently use NULL for invalid GUC unit strings
Patch by Euler Taveira
This commit is contained in:
@ -7734,7 +7734,7 @@ GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
|
||||
values[2] = "min";
|
||||
break;
|
||||
default:
|
||||
values[2] = "";
|
||||
values[2] = NULL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user