mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
pg_receivexlog: Fix logic error
The code checking the WAL file name contained a logic error and wouldn't actually catch some bad names.
This commit is contained in:
parent
4ca50e0710
commit
2c1031bd86
@ -145,7 +145,7 @@ FindStreamingStart(uint32 *tli)
|
||||
* characters.
|
||||
*/
|
||||
if (strlen(dirent->d_name) != 24 ||
|
||||
!strspn(dirent->d_name, "0123456789ABCDEF") == 24)
|
||||
strspn(dirent->d_name, "0123456789ABCDEF") != 24)
|
||||
continue;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user