Page MenuHomePhorge

Fix InvalidArgumentException on commit hook
ClosedPublic

Authored by valerio.bozzolan on Apr 14 2023, 12:05.
Tags
None
Referenced Files
F2193746: D25122.1716021137.diff
Fri, May 17, 08:32
F2193688: D25122.1716016197.diff
Fri, May 17, 07:09
Unknown Object (File)
Fri, May 10, 13:11
Unknown Object (File)
Thu, May 9, 03:22
Unknown Object (File)
Thu, May 9, 03:01
Unknown Object (File)
Tue, May 7, 07:55
Unknown Object (File)
Thu, May 2, 16:04
Unknown Object (File)
Thu, May 2, 09:52

Details

Summary

Fix a regression introduced here:

96ae4ba13acbf0e2f8932e950a92af0495f034d7

I reproduced this exception executing "svn commit" on a hosted repository.

That crash happened because the PHP getenv() function can return false.
But, that is a very terrible value that blasts the non-string-empty check.

So, now the default getenv() value is skipped, without causing problems.

Closes T15253
Ref T15190

Test Plan
  • I've run svn commit and I have not encountered any issue now

Diff Detail

Repository
rP Phorge
Branch
fix-git-commit-hook
Lint
Lint Warnings
SeverityLocationCodeMessage
Warningscripts/repository/commit_hook.php:196TXT3Line Too Long
Unit
No Test Coverage
Build Status
Buildable 246
Build 246: arc lint + arc unit

Event Timeline

  • fix damn linter putting every line under 80 chars

Removed some whitespaces unremoved by lint autofixer

scripts/repository/commit_hook.php
121

https://www.php.net/manual/en/function.getenv.php

«returns ... false if the environment variable varname does not exist»

This revision is now accepted and ready to land.Apr 14 2023, 17:06