Index: generic/nsf.c =================================================================== diff -u -N -rf314d0a87b2d51b2c9c506bd0c0e52a6493852fd -rc00fbde4c8915bcb44734039601af5cbeaab2971 --- generic/nsf.c (.../nsf.c) (revision f314d0a87b2d51b2c9c506bd0c0e52a6493852fd) +++ generic/nsf.c (.../nsf.c) (revision c00fbde4c8915bcb44734039601af5cbeaab2971) @@ -18829,7 +18829,7 @@ TclDeletesObject(ClientData clientData) { NsfObject *object; Tcl_Interp *interp; - + nonnull_assert(clientData != NULL); object = (NsfObject *)clientData; @@ -23078,11 +23078,11 @@ { Proc *procPtr = GetTclProcFromCommand(cmd); - if (procPtr == NULL) { + if (procPtr == NULL) { Tcl_SetObjResult(interp, Tcl_NewStringObj("body not available for this kind of method", -1)); return TCL_ERROR; - } - if (procPtr->bodyPtr->typePtr == Nsf_OT_byteCodeType) { + } + if (procPtr->bodyPtr->typePtr == Nsf_OT_byteCodeType) { EXTERN Tcl_Obj *Tcl_DisassembleByteCodeObj(Tcl_Interp *interp, Tcl_Obj *objPtr); Tcl_SetObjResult(interp, Tcl_DisassembleByteCodeObj(interp, procPtr->bodyPtr));