2026/07/08
< 2026
|
Wednesday, July 8, 2026 (#189)
|
|
References |
Main Work
- Ferreteria FileSys stuff in order to support sftp in FTM.
The "too many" issue may have been fixed; the incorrect old/new counts issue has been.
I seem to be tracking down a diffuse train of errors that only appear after a lot of copying activity, and therefore take a lot of time to reproduce.
Currently:
- Attempt to read property "OIdent" on null in Pair.php on line 141
- The code in question is
$onEntry->OIdent->OPSpec->SName, so$onEntryis being set to NULL this one time. $onEntrycomes from$oIter->ONodeInner.$oIterisNodes, and$ONodeInneris set from$this->ONodeOuter->NewSubNode($this->FNameInner)unless$this->FNameInneris NULL in which case$ONodeInneris also NULL.
- The code in question is
So... I guess let's put in a check for $this->FNameInner being NULL.