Project

General

Profile

Actions

Bug #103777

open

\TYPO3\CMS\Core\Resource\AbstractFile::getSize returns null for files with a size of 0 byte

Added by Wolfgang Klinger 17 days ago. Updated 16 days ago.

Status:
New
Priority:
Should have
Assignee:
-
Category:
File Abstraction Layer (FAL)
Target version:
-
Start date:
2024-05-02
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
12
PHP Version:
8.2
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:

Description

\TYPO3\CMS\Core\Resource\AbstractFile::getSize
returns `null` (which leads to problems up in the chain of callers) even though the file is valid, and the file size is there, it's just coincidentally 0 bytes (happens).
I see this as a bug.

        return $size ? (int)$size : null;

(check with `isset` should be a simple solution here)

Actions #1

Updated by Oliver Hader 16 days ago

  • Category set to File Abstraction Layer (FAL)
  • Complexity changed from no-brainer to easy
Actions #2

Updated by Georg Ringer 16 days ago ยท Edited

FYI

was a breaking change in v13, fine there already https://review.typo3.org/c/Packages/TYPO3.CMS/+/80002/4/typo3/sysext/core/Classes/Resource/AbstractFile.php

wolfgang, wanna do a change for v12, not adding the return type but swiching to 0 instead of null?

Actions

Also available in: Atom PDF