Allan Schaffer (allan++at++holodeck.engr.sgi.com)
Fri, 13 Mar 1998 18:11:11 -0800
Hard to say offhand, but:
> PF Warning/Usage: pfClone() NULL pfNode*.
pfClone(null-pointer); causes this.
> PF Warning/Usage: pfAddChild: Bad child 0x0.
if you try to:
pfAddChild (parent, NULL-pointer);
or pfAddChild (parent, parent);
you'll get this error.
>
> PF Warning/Usage: pfSequence: Frame 1 indexes out of child
> array 1.
The pfSequence node holds a list of children; this error means that
there's been an attempt to dereference a child beyond the end of the
list.
I would assume these are all cascading errors; my guess is something
like this:
subgraph = loadmyfile("foo") <-- but loadmyfile returned null
root = pfClone(subgraph) <-- fails b/c subgraph is null
pfAddChild (sequence, root) <-- etc
Allan
--
Allan Schaffer allan++at++sgi.com
Silicon Graphics http://reality.sgi.com/allan
=======================================================================
List Archives, FAQ, FTP: http://www.sgi.com/Technology/Performer/
Submissions: info-performer++at++sgi.com
Admin. requests: info-performer-request++at++sgi.com
This archive was generated by hypermail 2.0b2 on Mon Aug 10 1998 - 17:57:01 PDT