Skip to content
Snippets Groups Projects
Commit d083cef2 authored by pw's avatar pw
Browse files

Calls to set-values resulted in multiple calls to XtFree on same address

which probably caused trouble on some systems. Error traced to bogus
call to register_garbage in RXtSetValues and RXtGetValues. Had to add
such a call in message_read_resource_names. Also added a scan of
the garbage_list prior to adding something new with a warning message
if things seem wrong.
parent a9b61aa6
No related branches found
No related tags found
No related merge requests found
/* /*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/datatrans.c,v 1.5 1997/08/22 20:49:32 pw Exp $ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/datatrans.c,v 1.6 1997/12/31 18:57:53 pw Exp $
This code was written as part of the CMU Common Lisp project at This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain. Carnegie Mellon University, and has been placed in the public domain.
...@@ -378,6 +378,8 @@ void message_read_resource_names(message_t message,ResourceList *list, ...@@ -378,6 +378,8 @@ void message_read_resource_names(message_t message,ResourceList *list,
list->length = length; list->length = length;
if( length>0 ) { if( length>0 ) {
list->args = (ArgList)XtMalloc(length*sizeof(Arg)); list->args = (ArgList)XtMalloc(length*sizeof(Arg));
register_garbage(list->args, GarbageData);
/* Allocate region to store data into */ /* Allocate region to store data into */
data = (long *)XtMalloc( sizeof(long)*length ); data = (long *)XtMalloc( sizeof(long)*length );
bzero(data,sizeof(long)*length); bzero(data,sizeof(long)*length);
......
/* /*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/requests.c,v 1.4 1996/05/08 14:15:40 ram Exp $ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/requests.c,v 1.5 1997/12/31 18:57:55 pw Exp $
This code was written as part of the CMU Common Lisp project at This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain. Carnegie Mellon University, and has been placed in the public domain.
...@@ -27,14 +27,29 @@ Garbage garbage_list = NULL; ...@@ -27,14 +27,29 @@ Garbage garbage_list = NULL;
#include "Interface.h" #include "Interface.h"
static int
already_garbage(void*stuff)
{
Garbage current = garbage_list;
while( current ) {
if (current->junk == (char*)stuff){
fprintf(stderr,"Redundant add to garbage list.\n");
return 1;
}
current = current->next;
}
return 0;
}
void register_garbage(void *stuff,garbage_kind kind) void register_garbage(void *stuff,garbage_kind kind)
{ {
Garbage garbage = XtNew(struct garbage_node); if (!already_garbage(stuff)) {
Garbage garbage = XtNew(struct garbage_node);
garbage->junk = (char *)stuff; garbage->junk = (char *)stuff;
garbage->kind = kind; garbage->kind = kind;
garbage->next = garbage_list; garbage->next = garbage_list;
garbage_list = garbage; garbage_list = garbage;
}
} }
void cleanup_garbage() void cleanup_garbage()
......
/* /*
$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/resources.c,v 1.2 1994/10/27 17:16:51 ram Exp $ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/motif/server/resources.c,v 1.3 1997/12/31 18:57:58 pw Exp $
This code was written as part of the CMU Common Lisp project at This code was written as part of the CMU Common Lisp project at
Carnegie Mellon University, and has been placed in the public domain. Carnegie Mellon University, and has been placed in the public domain.
...@@ -33,7 +33,6 @@ int RXtSetValues(message_t message) ...@@ -33,7 +33,6 @@ int RXtSetValues(message_t message)
toolkit_read_value(message,&resources,ExtRResourceList); toolkit_read_value(message,&resources,ExtRResourceList);
XtSetValues(w,resources.args,resources.length); XtSetValues(w,resources.args,resources.length);
register_garbage(resources.args,GarbageData);
} }
int RXtGetValues(message_t message) int RXtGetValues(message_t message)
...@@ -53,7 +52,6 @@ int RXtGetValues(message_t message) ...@@ -53,7 +52,6 @@ int RXtGetValues(message_t message)
message_write_resource_list(reply,&resources,resource_list_tag); message_write_resource_list(reply,&resources,resource_list_tag);
message_send(client_socket,reply); message_send(client_socket,reply);
message_free(reply); message_free(reply);
register_garbage(resources.args,GarbageData);
must_confirm = False; must_confirm = False;
} }
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