Page MenuHomePhorge

Initialize $cache_key variable in CelerityResourceController.php
ClosedPublic

Authored by aklapper on May 16 2024, 09:46.
Tags
None
Referenced Files
F3348714: D25642.1743741409.diff
Thu, Apr 3, 04:36
F3339751: D25642.1743625692.diff
Tue, Apr 1, 20:28
F3334418: D25642.1743549207.diff
Mon, Mar 31, 23:13
F3329502: D25642.1743476240.diff
Mon, Mar 31, 02:57
F3328658: D25642.1743460056.diff
Sun, Mar 30, 22:27
F3327409: D25642.1743439085.diff
Sun, Mar 30, 16:38
F3327061: D25642.1743431904.diff
Sun, Mar 30, 14:38
F3311450: D25642.1743203950.diff
Thu, Mar 27, 23:19

Details

Summary

$cache_key is unconditionally called in $cache->setKey($cache_key, $data) but is only defined if the previous condition if ($is_cacheable && $is_locally_cacheable && !$dev_mode) was true.
Thus initialize the variable to avoid a theoretical exception. (No additional null check is needed as $cache gets defined in the same condition.)

Test Plan

Carefully read the code.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

src/applications/celerity/controller/CelerityResourceController.php
102

And, maybe this line

I felt it's not necessarily needed but it cannot hurt either. :)

Thanks. Moreover, looking at PhutilKeyValueCache it seems that setKey(null) has no sense. So thanks also for that extra care you already set.

This revision is now accepted and ready to land.Jun 11 2024, 10:57