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)
Fri, Nov 22, 5:06 AM
Unknown Object (File)
Oct 9 2024, 1:41 PM
Unknown Object (File)
Sep 21 2024, 12:46 AM
Unknown Object (File)
Sep 12 2024, 7:10 AM
Unknown Object (File)
Sep 6 2024, 8:33 AM
Unknown Object (File)
Sep 1 2024, 6:41 PM
Unknown Object (File)
Aug 29 2024, 2:50 PM
Unknown Object (File)
Aug 29 2024, 4:59 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
Branch
utf8str
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 24935
Build 34402: Run Core Tests
Build 34401: arc lint + arc unit

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.