swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: status access violation


From: Marcus G. Daniels
Subject: Re: status access violation
Date: 05 Mar 2000 18:57:08 -0800
User-agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.4

>>>>> "DS" == Darren Schreiber <address@hidden> writes:

DS> My other favorite mystery error is "segmentation fault."  Could
DS> you give me a general sense of what causes these?

Same idea -- using a pointer with a bad value.  (Because it is uninitialized,
corrupted, dropped already, or NULL.)

#include <stddef.h>

int
main ()
{
  int *ptr = NULL;
  
  *ptr = 0;
}

                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]