View Issue Details

IDProjectCategoryView StatusLast Update
0000586fileGeneralpublic2024-12-08 19:01
ReporterAnton Monroe Assigned Tochristos  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
OSOS/2 
Product Version5.46 
Fixed in VersionHEAD 
Summary0000586: hard-coded path separator in magi.c
DescriptionIn src/magic.c line 208 there is a hard-coded ':' as a path separator--
        if (asprintf(&default_magic, "%s:%s", hmagicpath, MAGIC) < 0)
I suggest it be changed to something like
        if (asprintf(&default_magic, "%s%c%s", hmagicpath, PATHSEP, MAGIC) < 0)

Fixes a minor bug on OS/2

TagsNo tags attached.

Activities

christos

2024-12-08 19:01

manager   ~0004125

Fixed, thanks!

Issue History

Date Modified Username Field Change
2024-12-08 09:53 Anton Monroe New Issue
2024-12-08 19:01 christos Assigned To => christos
2024-12-08 19:01 christos Status new => assigned
2024-12-08 19:01 christos Status assigned => resolved
2024-12-08 19:01 christos Resolution open => fixed
2024-12-08 19:01 christos Fixed in Version => HEAD
2024-12-08 19:01 christos Note Added: 0004125