summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-11-02 01:17:26 +0100
committerDan McGee <dan@archlinux.org>2011-11-02 01:17:26 +0100
commit1953fe43689054aded03eb166f4f987e7cc0dccd (patch)
tree4ff0a94ee4ac463e98ccef4717ba7494abeb0c21 /lib/libalpm/util.c
parentd98ff04cc933253b7221fc170813f7d2365d3289 (diff)
downloadpacman-1953fe43689054aded03eb166f4f987e7cc0dccd.tar.gz
pacman-1953fe43689054aded03eb166f4f987e7cc0dccd.tar.xz
Fix thinko in _alpm_strip_newline
The point of this early compare to NULL byte check was so we could bail early and skip the strcmp() call. Given we weren't doing the check right, this never exited early. Fix it to work as intended. Noticed-by: Pepe Juárez <trulustapa@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index 12286c6a..fbb320ef 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -221,7 +221,7 @@ char *_alpm_strtrim(char *str)
size_t _alpm_strip_newline(char *str)
{
size_t len;
- if(str == '\0') {
+ if(*str == '\0') {
return 0;
}
len = strlen(str);