unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* replace alloca with strdup
@ 2005-05-21 16:30 Han Boetes
  2005-05-21 17:07 ` Masatake YAMATO
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Han Boetes @ 2005-05-21 16:30 UTC (permalink / raw)


Hi,

While looking at some compilerwarnings I found an alloca and an
strcpy.  And I realized this can also be done as follows:


Index: xterm.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/xterm.c,v
retrieving revision 1.864
diff -u -p -r1.864 xterm.c
--- xterm.c	10 May 2005 09:19:19 -0000	1.864
+++ xterm.c	21 May 2005 16:23:31 -0000
@@ -7635,8 +7635,9 @@ x_connection_closed (dpy, error_message)
   Lisp_Object frame, tail;
   int count;
 
-  error_msg = (char *) alloca (strlen (error_message) + 1);
-  strcpy (error_msg, error_message);
+  if ((error_msg = strdup(error_message)) == NULL)
+    errx(1, "Out of memory.");
+
   handling_signal = 0;
 
   /* Prevent being called recursively because of an error condition


Advantages are:

  - simpler code
  - strdup is more portable
  - error handling
  - you don't have to worry about strdup concerning security

I hope you like the idea.



# Han

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: replace alloca with strdup
  2005-05-21 16:30 replace alloca with strdup Han Boetes
@ 2005-05-21 17:07 ` Masatake YAMATO
  2005-05-21 17:25 ` David Kastrup
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Masatake YAMATO @ 2005-05-21 17:07 UTC (permalink / raw)
  Cc: emacs-devel

Hi,

> -  error_msg = (char *) alloca (strlen (error_message) + 1);
> -  strcpy (error_msg, error_message);
> +  if ((error_msg = strdup(error_message)) == NULL)
> +    errx(1, "Out of memory.");
> +

I wonder who will release the memory chunk allocated by strdup.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: replace alloca with strdup
  2005-05-21 16:30 replace alloca with strdup Han Boetes
  2005-05-21 17:07 ` Masatake YAMATO
@ 2005-05-21 17:25 ` David Kastrup
  2005-05-21 23:49 ` Andreas Schwab
  2005-05-22  9:15 ` Richard Stallman
  3 siblings, 0 replies; 5+ messages in thread
From: David Kastrup @ 2005-05-21 17:25 UTC (permalink / raw)


Han Boetes <han@mijncomputer.nl> writes:

> While looking at some compilerwarnings I found an alloca and an
> strcpy.  And I realized this can also be done as follows:
>
>
> Index: xterm.c
> ===================================================================
> RCS file: /cvsroot/emacs/emacs/src/xterm.c,v
> retrieving revision 1.864
> diff -u -p -r1.864 xterm.c
> --- xterm.c	10 May 2005 09:19:19 -0000	1.864
> +++ xterm.c	21 May 2005 16:23:31 -0000
> @@ -7635,8 +7635,9 @@ x_connection_closed (dpy, error_message)
>    Lisp_Object frame, tail;
>    int count;
>  
> -  error_msg = (char *) alloca (strlen (error_message) + 1);
> -  strcpy (error_msg, error_message);
> +  if ((error_msg = strdup(error_message)) == NULL)
> +    errx(1, "Out of memory.");
> +
>    handling_signal = 0;
>  
>    /* Prevent being called recursively because of an error condition
>
>
> Advantages are:
>
>   - simpler code
>   - strdup is more portable
>   - error handling
>   - you don't have to worry about strdup concerning security
>
> I hope you like the idea.

Disadvantage: memory leak.

I don't like it.

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: replace alloca with strdup
  2005-05-21 16:30 replace alloca with strdup Han Boetes
  2005-05-21 17:07 ` Masatake YAMATO
  2005-05-21 17:25 ` David Kastrup
@ 2005-05-21 23:49 ` Andreas Schwab
  2005-05-22  9:15 ` Richard Stallman
  3 siblings, 0 replies; 5+ messages in thread
From: Andreas Schwab @ 2005-05-21 23:49 UTC (permalink / raw)


Han Boetes <han@mijncomputer.nl> writes:

> Advantages are:
>
>   - simpler code

Not really.

>   - strdup is more portable

Not more than alloca.

>   - error handling

Which error?

>   - you don't have to worry about strdup concerning security

The code you changed is already obviously safe.

> I hope you like the idea.

No.  Nobody is reclaiming the storage, so you introduced a memory leak.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: replace alloca with strdup
  2005-05-21 16:30 replace alloca with strdup Han Boetes
                   ` (2 preceding siblings ...)
  2005-05-21 23:49 ` Andreas Schwab
@ 2005-05-22  9:15 ` Richard Stallman
  3 siblings, 0 replies; 5+ messages in thread
From: Richard Stallman @ 2005-05-22  9:15 UTC (permalink / raw)
  Cc: emacs-devel

    While looking at some compilerwarnings I found an alloca and an
    strcpy.

What is wrong with that?  I don't see any problem in it.

	     And I realized this can also be done as follows:

    +  if ((error_msg = strdup(error_message)) == NULL)
    +    errx(1, "Out of memory.");

This creates a memory leak.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-05-22  9:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-21 16:30 replace alloca with strdup Han Boetes
2005-05-21 17:07 ` Masatake YAMATO
2005-05-21 17:25 ` David Kastrup
2005-05-21 23:49 ` Andreas Schwab
2005-05-22  9:15 ` Richard Stallman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).