Tcl Source Code

Ticket Change Details
Login
Overview

Artifact ID: 9cf9936d573edcd398ef3703e4371e7df4e60a0b
Ticket: 04e26c02c04596869907b5240ffa0c97457df352
Warning
User & Date: dgp 2017-04-27 13:47:00
Changes

  1. icomment:
    
    It appears the error is in testing this condition at all:
    
    ((objPtr)->typePtr == NULL) && ((objPtr)->bytes == NULL))
    
    A valid Tcl_Obj must follow the stork model. It must be
    standing on at least one leg.  The condition above is
    testing
    
      "If this stork is standing on 0 legs..."
    
    which has to always report false.
    
    Removing that seems to be the better solution, unless
    we can find some reason it was placed there that makes
    sense.
    
  2. login: "dgp"
  3. mimetype: "text/plain"