Re: ggi_malloc and friends

2000-11-07 Thread Lee Brown
Marcus: Has anythibng happpened with ggi_malloc and friends. Either way, what needs to be done to make it a happy situation? (Even it is long) Lee Brown Jr. [EMAIL PROTECTED]

Re: ggi_malloc and friends [PATCH]

2000-11-01 Thread Lee Brown
I made the suggested changes. Thank you guys. I also saw one more thing to be fixed. Andreas how about adding this patch to the tree? The changes are all here for you to see. -- Lee Brown Jr. [EMAIL PROTECTED] - diff -r

Re: ggi_malloc and friends [PATCH]

2000-11-01 Thread Andreas Beck
Hi Lee, thanks for the patch. Marcus: will you check and commit or shall I ? diff -r degas-old/lib/libggi/default/ramdac/visual.c degas/lib/libggi/default/ramdac/visual.c Could you make unified diffs in future ? They are much easier to read and apply manually, if need arises. CU, ANdy --

Re: ggi_malloc and friends [PATCH]

2000-11-01 Thread Marcus Sundberg
Andreas Beck [EMAIL PROTECTED] writes: Hi Lee, thanks for the patch. Marcus: will you check and commit or shall I ? Checking it right now. Unfortunately things are not as trivial as they might seem. The reason this haven't been done before is that we want to do it _right_ when we remove

Re: ggi_malloc and friends [PATCH]

2000-11-01 Thread Lee Brown
Marcus: Sorry I forgot about the unified business. I guess I wanted to get what I had out there so the process was at least started. -- Lee Brown Jr. [EMAIL PROTECTED]

Re: ggi_malloc and friends [PATCH]

2000-10-31 Thread Martin Schulze
Patch the Patch: diff -r degas-old/lib/libggi/display/vcsa/visual.c degas/lib/libggi/display/vcsa/visual.c 103a104,114 priv = LIBGGI_PRIVATE(vis) = malloc(sizeof(ggi_vcsa_priv)); if(priv == NULL) return GGI_ENOMEM; LIBGGI_GC(vis) =

Re: ggi_malloc and friends [PATCH]

2000-10-31 Thread Christoph Egger
On Tue, 31 Oct 2000, Martin Schulze wrote: Patch the Patch: diff -r degas-old/lib/libggi/display/vcsa/visual.c degas/lib/libggi/display/vcsa/visual.c 103a104,114 priv = LIBGGI_PRIVATE(vis) = malloc(sizeof(ggi_vcsa_priv)); if(priv == NULL) return GGI_ENOMEM;

Re: ggi_malloc and friends [PATCH]

2000-10-30 Thread Stefan Seefeld
Lee wrote: diff -r degas-old/lib/libggi/default/ramdac/visual.c degas/lib/libggi/default/ramdac/visual.c 51c51,53 vis-palette=_ggi_malloc(256*sizeof(ggi_color)); --- vis-palette=malloc(256*sizeof(ggi_color)); if(vis == NULL) return GGI_ENOMEM; You

ggi_malloc and friends

2000-10-27 Thread Lee
I'm hunting down ggi_malloc and friends and replacing it with malloc. I'm not sure what to do in some cases where two malloc's take place in the same routine. I suppose I could just put ggiPanic if I'm not sure since that was the way it was before. Que est-ce que tu pense? -- Lee Brown Jr

Re: ggi_malloc and friends

2000-10-27 Thread Marcus Sundberg
Lee [EMAIL PROTECTED] writes: On Fri, 27 Oct 2000, Lee wrote: I'm hunting down ggi_malloc and friends and replacing it with malloc. I'm not sure what to do in some cases where two malloc's take place in the same routine. I suppose I could just put ggiPanic if I'm not sure since