|
From: James T. <ja...@fl...> - 2023-06-14 14:54:36
|
> On 8 Jun 2023, at 15:34, merspieler <mer...@al...> wrote: > > On Thu Jun 8, 2023 at 4:28 PM CEST, James Turner wrote: >> That makes very little sense to me, and you’re going to need to debug >> it yourself in detail, eg using GDB / strace or something to see what >> paths it’s looking at (or maybe set the log level to BULK ?) > > How to do that? > Then well try to find the issue once we're back home [Sorry for the delay in responding] Set a breakpoint or several in SGPath::validate, but probably on line 341 which is the failure case. Notably that code uses realpath() to normalize the path before any checks are performed on validity. You might also want to use a conditional breakpoint on line 315, if the input path matches the one which is failing. (Conditional breakpoints are awesome!) Kind regards, James |