diff --git a/lib/roken/strpool.c b/lib/roken/strpool.c index 60eddc633..642d335de 100644 --- a/lib/roken/strpool.c +++ b/lib/roken/strpool.c @@ -103,7 +103,7 @@ rk_strpoolcollect(struct rk_strpool *p) char *str; if (p == NULL) return strdup(""); - str = = p->str; + str = p->str; p->str = NULL; free(p); return str;