Commit 231526bd19e for php.net

commit 231526bd19e2c930e412a90c8331319444a32969
Merge: 7dc859d75f5 d07f376e0cc
Author: Ilia Alshanetsky <ilia@ilia.ws>
Date:   Mon Sep 21 21:52:08 2026 -0400

    Merge branch 'PHP-8.5'

    * PHP-8.5:
      ext/pdo: Do not register a bindColumn() binding for an unknown column

diff --cc ext/pdo/pdo_stmt.c
index a7a41168757,1b71c317e4a..0eb6645608e
--- a/ext/pdo/pdo_stmt.c
+++ b/ext/pdo/pdo_stmt.c
@@@ -305,6 -307,7 +305,7 @@@ static bool really_register_bound_param
  			spprintf(&tmp, 0, "Did not find column name '%s' in the defined columns; it will not be bound", ZSTR_VAL(param->name));
  			pdo_raise_impl_error(stmt->dbh, stmt, "HY000", tmp);
  			efree(tmp);
 -			return 0;
++			return false;
  		}
  	}