From 90788433e3cfb11817839cd52ef9d75c2a504468 Mon Sep 17 00:00:00 2001 From: graham.gower Date: Tue, 10 Nov 2009 01:07:09 -0500 Subject: Cleanup trim_alloc(). git-svn-id: http://opkg.googlecode.com/svn/trunk@278 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/opkg_utils.c') diff --git a/libopkg/opkg_utils.c b/libopkg/opkg_utils.c index 20af4d5..e293197 100644 --- a/libopkg/opkg_utils.c +++ b/libopkg/opkg_utils.c @@ -100,36 +100,27 @@ char **read_raw_pkgs_from_stream(FILE *fp) } /* something to remove whitespace, a hash pooper */ -char *trim_alloc(char *line) +char *trim_alloc(const char *src) { - char *new; - char *dest, *src, *end; - - new = xcalloc(1, strlen(line) + 1); - dest = new, src = line, end = line + (strlen(line) - 1); + const char *end; /* remove it from the front */ while(src && isspace(*src) && *src) src++; + + end = src + (strlen(src) - 1); + /* and now from the back */ while((end > src) && isspace(*end)) end--; + end++; - *end = '\0'; - strcpy(new, src); - /* this does from the first space - * blasting away any versions stuff in depends - while(src && - !isspace(*src) && - *src) - *dest++ = *src++; - *dest = '\0'; - */ - - return new; + + /* xstrndup will NULL terminate for us */ + return xstrndup(src, end-src); } int line_is_blank(const char *line) -- cgit v0.9.1