Page MenuHomePhabricator

Fix an issue where "phutil_utf8v()" could fatal when passed an integer
ClosedPublic

Authored by epriestley on Oct 16 2020, 4:20 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 29 2026, 10:31 AM
Unknown Object (File)
Mar 7 2026, 1:11 AM
Unknown Object (File)
Feb 9 2026, 6:15 AM
Unknown Object (File)
Jan 20 2026, 11:58 AM
Unknown Object (File)
Jan 19 2026, 11:57 AM
Unknown Object (File)
Jan 19 2026, 11:57 AM
Unknown Object (File)
Nov 23 2025, 8:20 PM
Unknown Object (File)
Nov 6 2025, 2:33 AM
Subscribers
None

Details

Summary

See https://discourse.phabricator-community.org/t/search-by-name-in-files-doesnt-support-number/4300.

I can't exactly reproduce the original issue, but when a query like "quack 1234" is tokenized, we end up calling "phutil_utf8v(1234)", where the argument is an integer.

At least in recent versions of PHP, this fatals ("trying to access an offset of an integer"). Cast the argument first.

Test Plan

Searched for "quack 1234" in Files. Before: fatal accessing offset of integer; after: correct results.

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Oct 16 2020, 4:20 PM
epriestley requested review of this revision.
This revision was automatically updated to reflect the committed changes.