"Zhang, Jie" <zhangj...@cn.fujitsu.com> writes: > In src\backend\utils\misc\guc.c, I found a potential memory leak. > make_absolute_path() return a malloc'd copy, we should free memory before the > function return false.
If SelectConfigFiles were executed more than once per postmaster launch, this might be worth adding code for ... but as-is, I'm dubious. There are a few tens of KB of other one-time leaks that we don't worry about removing. Even more to the point, the particular code path you're complaining about is a failure exit that will lead to immediate process termination, so there really is no point in adding code there. regards, tom lane