2026/07/08

From WoozleCodes
Jump to navigation Jump to search
Wednesday, July 8, 2026 (#189)
Tuesday Wednesday Thursday

References

Main Work

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 $onEntry is being set to NULL this one time.
    • $onEntry comes from $oIter->ONodeInner.
    • $oIter is Nodes, and $ONodeInner is set from $this->ONodeOuter->NewSubNode($this->FNameInner) unless $this->FNameInner is NULL in which case $ONodeInner is also NULL.

So... I guess let's put in a check for $this->FNameInner being NULL.