]> code.citadel.org Git - citadel.git/commitdiff
* Fixed code for client segfault at login
authorMichael Hampton <io_error@uncensored.citadel.org>
Mon, 24 Jun 2002 20:17:43 +0000 (20:17 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Mon, 24 Jun 2002 20:17:43 +0000 (20:17 +0000)
citadel/ChangeLog
citadel/citadel.c

index 2d530718639f3673d4f8a9ee90156bcd16c19308..208ef0a4c18746142f2ac43207876290654c0624 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 591.54  2002/06/24 20:17:43  error
+ * Fixed code for client segfault at login
+
  Revision 591.53  2002/06/24 20:11:00  error
  * Buffer overflow fixes and minor cleanup in IPC code
 
@@ -3767,4 +3770,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index 24f48f03f9b2962eeac6bbcabb7ac4a49c9b9517..5e23b25145b48daebbf6b30d9fd8b409a9e3d0c4 100644 (file)
@@ -910,7 +910,7 @@ int main(int argc, char **argv)
        int stored_password = 0;
        char password[SIZ];
        struct ctdlipcmisc chek;
-       struct usersupp *myself;
+       struct usersupp *myself = NULL;
        int r;                          /* IPC result code */
 
        setIPCDeathHook(screen_delete);