Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wIYN7-008COJ-1v for pgsql-hackers@arkaria.postgresql.org; Thu, 30 Apr 2026 20:52:34 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1wIYN6-008neL-2U for pgsql-hackers@arkaria.postgresql.org; Thu, 30 Apr 2026 20:52:32 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wIYN6-008neC-1F for pgsql-hackers@lists.postgresql.org; Thu, 30 Apr 2026 20:52:32 +0000 Received: from ewsoutbound.kpnmail.nl ([195.121.94.186]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1wIYN2-00000003Zw1-3az6 for pgsql-hackers@lists.postgresql.org; Thu, 30 Apr 2026 20:52:31 +0000 X-KPN-MessageId: 7e81ac54-44d6-11f1-89e5-00505699b430 Received: from smtp.kpnmail.nl (unknown [10.31.155.5]) by ewsoutbound.so.kpn.org (Halon) with ESMTPS id 7e81ac54-44d6-11f1-89e5-00505699b430; Thu, 30 Apr 2026 22:52:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=xs4all.nl; s=xs4all01; h=content-type:subject:to:from:mime-version:date:message-id; bh=NWvB6k8OaqNBLgdCBG2SPbIKqXCjUy74j2xCOQCG4HU=; b=LTfZQUFFzzoYeyuQJlBr78YNsjwrD8L8nt4eyjyZs0ZsnAA/94Gpo9WOpo8BSAfvKZHNJsQDQ0RUn 4Uxkwm2joBoEIXC9RLp2e5nWkS5davFwc1oNG8fRok0n42QdbuzCoL21FhrDn9xtnkeZFUflIPWRw/ UadCV7nD/D2GfD0fG4NNJqfhqQgyIRBgeWEvHtdDOdgbqcHj9pN3/E9BFddjht+2pxmhh7Bvgfn+JK GaB/tCZKa8iWzKH34dB5tnAaoecvriSYWz2PQVg3QNlDXExDEHwy7Fby/MxRvfV9yjvVv2qhLt+JoT Bk6UYu9Rdly+xA/Dk+0fVG5MsDrHu8Q== X-KPN-MID: 33|nhhDOd+SENazq+v77TggYiK6wCsjY2X/mW2jqpLV4MCemAPEygLgZzvoFgkK4Cz fEGk4Qv8/fuI2/J1rK52e7kGxTZsH+AZDkROcnLj0Rl4= X-KPN-VerifiedSender: Yes X-CMASSUN: 33|LHm3/zVf4e7h0DUyJVlGnFXvKU5000qwwwwUWktLH8z3+QT7AA2cMNR9owvUACL gOvZBViYkD61EtPuzQpYYAQ== X-Originating-IP: 45.83.234.25 Received: from [192.168.178.31] (unknown [45.83.234.25]) by smtp.xs4all.nl (Halon) with ESMTPSA id 7277a7ed-44d6-11f1-abaf-00505699b758; Thu, 30 Apr 2026 22:52:26 +0200 (CEST) Message-ID: <797eb494-e2d0-2fcd-b766-334df58cc2eb@xs4all.nl> Date: Thu, 30 Apr 2026 22:52:36 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Content-Language: en-US From: Erik Rijkers To: PostgreSQL Hackers Subject: warning under gcc 16.1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Compiling with gcc 16.1.0 gives the following warning and notes: (horizontally compressed a bit te avoid excessive wrapping) clauses.c: In function ‘recheck_cast_function_args.isra’: clauses.c:5139:19: warning: ‘actual_arg_types’ may be used uninitialized [-Wmaybe-uninitialized] 5139 | rettype = enforce_generic_type_consistency(actual_arg_types, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5140 | declared_arg_types, | ~~~~~~~~~~~~~~~~~~~ 5141 | nargs, | ~~~~~~ 5142 | funcform->prorettype, | ~~~~~~~~~~~~~~~~~~~~~ 5143 | false); | ~~~~~~ In file included from clauses.c:46: ../../../../src/include/parser/parse_coerce.h:85:17: note: by argument 1 of type ‘const Oid *’ {aka ‘const unsigned int *’} to ‘enforce_generic_type_consistency’ declared here 85 | extern Oid enforce_generic_type_consistency(const Oid *actual_arg_types, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ clauses.c:5125:33: note: ‘actual_arg_types’ declared here 5125 | Oid actual_arg_types[FUNC_MAX_ARGS]; | ^~~~~~~~~~~~~~~~ HTH, Erik