Actions
Bug #88922
closedMemory unfriendly functions used for simple checks
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-08-05
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The TYPO3 core uses strstr()
and friends quite often to check the occurrence of a certain substring. This is not optimal, as the computed result is stored into RAM, but is not used at all.
Those occurrences may be replaced with strpos()
.
Updated by Gerrit Code Review over 5 years ago
- Status changed from In Progress to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/61445
Updated by Andreas Fernandez about 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset cde9c8c5540f0c41a557cb3b9d0582c8d3f36eaa.
Actions