Skip to content
Snippets Groups Projects
Commit b7947a99 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

core-dumping bug fixed

Rev: src/pike_types.c:1.24
parent bc9408da
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
||| See the files COPYING and DISCLAIMER for more information. ||| See the files COPYING and DISCLAIMER for more information.
\*/ \*/
#include "global.h" #include "global.h"
RCSID("$Id: pike_types.c,v 1.23 1997/05/30 02:40:10 grubba Exp $"); RCSID("$Id: pike_types.c,v 1.24 1997/08/21 00:47:42 hubbe Exp $");
#include <ctype.h> #include <ctype.h>
#include "svalue.h" #include "svalue.h"
#include "pike_types.h" #include "pike_types.h"
...@@ -521,6 +521,7 @@ char *low_describe_type(char *t) ...@@ -521,6 +521,7 @@ char *low_describe_type(char *t)
case T_PROGRAM: my_strcat("program"); break; case T_PROGRAM: my_strcat("program"); break;
case T_OBJECT: case T_OBJECT:
my_strcat("object"); my_strcat("object");
t+=4;
/* Prog id */ /* Prog id */
break; break;
case T_STRING: my_strcat("string"); break; case T_STRING: my_strcat("string"); break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment