Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception from ArcanistRefView which blocks "arc look remotes"
ClosedPublic

Authored by valerio.bozzolan on May 8 2023, 17:04.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Apr 19, 11:59
Unknown Object (File)
Wed, Apr 17, 06:11
Unknown Object (File)
Thu, Apr 11, 09:19
Unknown Object (File)
Thu, Apr 11, 01:17
Unknown Object (File)
Sun, Apr 7, 04:47
Unknown Object (File)
Sat, Apr 6, 05:29
Unknown Object (File)
Wed, Apr 3, 06:22
Unknown Object (File)
Tue, Apr 2, 19:49

Details

Summary

This change fixes the command arc look remotes for PHP 8.1.

Without this change, the null value bubbles up to PhutilUTF8StringTruncator, reaching a strlen().

This control probably does not need to be done at this low level inside PhutilUTF8StringTruncator,
but it is right to be at this high level from the caller in ArcanistRefView.

Closes T15368

Test Plan
  • run "arc look remotes"
  • still works in "old PHP" like 7.4
  • start to work in recent PHP 8.1+

Diff Detail

Repository
rARC Arcanist
Branch
fix-look-remotes-2
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 382
Build 382: arc lint + arc unit

Event Timeline

src/ref/ArcanistRefView.php
103

↑ here the problematic area - this should not receive null

Hi @Matthew :D super-safe thing here. Do you love this?

I think @speck maybe has better approaches here (do you know arc look? it's lovely)

This revision is now accepted and ready to land.Jun 1 2023, 15:38