List for cgit developers and users
 help / color / mirror / Atom feed
* 回复: [patch] shared.c-->trim_end () Segment fault
@ 2011-04-07 12:05 
  0 siblings, 0 replies; only message in thread
From:  @ 2011-04-07 12:05 UTC (permalink / raw)


your xstrndup() is better !

------------------
??


 
 
 
------------------ ???? ------------------
???: "hjemli"<hjemli at gmail.com>;
????: 2011?4?7?(???) ??5:32
???: "??"<openlibrary at qq.com>; 
??: "cgit"<cgit at hjemli.net>; 
??: Re: [patch] shared.c-->trim_end () Segment fault

 
 2011/3/30 ?? <openlibrary at qq.com>:
> From: zhongjj <zhongjj at lemote.com>
> Date: Wed, 30 Mar 2011 20:15:29 +0800
> Subject: [PATCH] to modify the action of changing a char *,or it would cause
>  Segment fault !
> ---
>  shared.c |    9 ++-------
>  1 files changed, 2 insertions(+), 7 deletions(-)
>
> diff --git a/shared.c b/shared.c
> index 7ec2e19..f26477b 100644
> --- a/shared.c
> +++ b/shared.c
> @@ -100,11 +100,9 @@ void *cgit_free_commitinfo(struct commitinfo *info)
>  char *trim_end(const char *str, char c)
>  {
>    int len;
> -   char *s, *t;
> -
>    if (str == NULL)
>        return NULL;
> -   t = (char *)str;
> +    char *t = xstrdup(str);
>    len = strlen(t);
>    while(len > 0 && t[len - 1] == c)
>        len--;
> @@ -112,11 +110,8 @@ char *trim_end(const char *str, char c)
>    if (len == 0)
>        return NULL;
>
> -   c = t[len];
>    t[len] = '\0';
> -   s = xstrdup(t);
> -   t[len] = c;
> -   return s;
> +   return t;
>  }
>
>  char *strlpart(char *txt, int maxlen)

Thanks, good catch. But maybe we should use xstrndup(), e.g. like this:

@@ -100,23 +100,16 @@ void *cgit_free_commitinfo(struct commitinfo *info)
 char *trim_end(const char *str, char c)
 {
        int len;
-       char *s, *t;

        if (str == NULL)
                return NULL;
-       t = (char *)str;
-       len = strlen(t);
-       while(len > 0 && t[len - 1] == c)
+       len = strlen(str);
+       while(len > 0 && str[len - 1] == c)
                len--;

        if (len == 0)
                return NULL;
-
-       c = t[len];
-       t[len] = '\0';
-       s = xstrdup(t);
-       t[len] = c;
-       return s;
+       return xstrndup(str, len);
 }

--
larsh


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-04-07 12:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-07 12:05 回复: [patch] shared.c-->trim_end () Segment fault 

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 NNTP newsgroup(s).