View Issue Details

IDProjectCategoryView StatusLast Update
0005205NoesisGUIUnitypublic2026-09-10 22:22
ReporterXaron Assigned Tojsantos  
PrioritynormalSeverityminor 
Status assignedResolutionopen 
Product Version4.0 
Target Version4.0.1 
Summary0005205: Potential null ref for empty pathes
Description

Dear staff,

I found a potential null ref in the file NoesisProviders.cs:

line 859 is:

    if (uri[0] == '/')

This creates potential problems if uri has a length of 0 aka being empty (had that in a test run in our project) so I propose the following change to fix that:

    if (uri.Length > 0 && uri[0] == '/')
PlatformAny

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2026-09-10 13:36 Xaron New Issue
2026-09-10 22:22 jsantos Assigned To => jsantos
2026-09-10 22:22 jsantos Status new => assigned
2026-09-10 22:22 jsantos Target Version => 4.0.1