]> git.ipfire.org Git - thirdparty/postgresql.git/commit
waldump: fix use-after-free in search_directory().
authorAndres Freund <andres@anarazel.de>
Wed, 23 Mar 2022 23:38:43 +0000 (16:38 -0700)
committerAndres Freund <andres@anarazel.de>
Mon, 28 Mar 2022 01:15:15 +0000 (18:15 -0700)
commit5ebd262dcbacddbd359d08c032fa04bfdf839b36
treec934cf3a7c44c90a5d275a7ba646616fc0e34169
parent5ca2aa2f26eaa3c355abd314aa7619f403aa4e4d
waldump: fix use-after-free in search_directory().

After closedir() dirent->d_name is not valid anymore. As there alerady are a
few places relying on the limited lifetime of pg_waldump, do so here as well,
and just pg_strdup() the string.

The bug was introduced in fc49e24fa69a.

Found by UBSan, run locally.

Backpatch: 11-, like fc49e24fa69 itself.
src/bin/pg_waldump/pg_waldump.c