]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix error handling in port's getopt_long() for missing argument
authorMichael Paquier <michael@paquier.xyz>
Fri, 31 Jul 2026 03:44:51 +0000 (12:44 +0900)
committerMichael Paquier <michael@paquier.xyz>
Fri, 31 Jul 2026 03:44:51 +0000 (12:44 +0900)
In the long option error path, the code previously returned BADARG
immediately when optstring[0] == ':' for a missing required argument,
without advancing "optind" or resetting "place".  This error handling
was inconsistent with the short option path, where both updates are
performed before returning BADARG (and inconsistent with libc,
additionally..).

This affects platforms where our port version of getopt_long() is used,
a concept that should be limited to WIN32 these days.  An argument could
be made in favor of a backpatch, but this could lead to a slight
different error handling, for a report that would only show up when
using incorrect option combinations.

Author: Japin Li <japinli@hotmail.com>
Discussion: https://postgr.es/m/SY7PR01MB10921AF81F18A8BCFA06388BEB6C22@SY7PR01MB10921.ausprd01.prod.outlook.com

src/port/getopt_long.c

index 20953db9db1e649e31bfd51810d9fdec18033d24..2e869fed58b0222d88b79fa29101999cf02a22a9 100644 (file)
@@ -145,8 +145,12 @@ retry:
                                                }
                                                else
                                                {
+                                                       optind++;
                                                        if (optstring[0] == ':')
+                                                       {
+                                                               place = EMSG;
                                                                return BADARG;
+                                                       }
 
                                                        if (opterr && has_arg == required_argument)
                                                                fprintf(stderr,
@@ -154,7 +158,6 @@ retry:
                                                                                argv[0], place);
 
                                                        place = EMSG;
-                                                       optind++;
 
                                                        if (has_arg == required_argument)
                                                                return BADCH;