mirror of
https://github.com/predis/predis.git
synced 2026-09-21 15:50:27 +00:00
675951360f
parseDouble() returned positive INF for the RESP3 payload ',-inf', inverting the sign. The value is reachable with protocol=3, for example ZSCORE on a member whose score is -inf. The existing infinity test asserted only is_infinite(), which cannot detect the sign inversion, so it now checks exact values. NaN payloads keep their current behavior; that is addressed separately.