Blame SOURCES/0002-Fix-memory-leaks-memory-access.patch

5aaecf
From b581b8e135b3d381d6df7e392a3f31b88697ea26 Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Fri, 7 Dec 2018 07:05:10 +0100
5aaecf
Subject: [PATCH 1/7] Fix: Dereference of null pointer
5aaecf
5aaecf
---
5aaecf
 ext/repo_repomdxml.c | 2 +-
5aaecf
 1 file changed, 1 insertion(+), 1 deletion(-)
5aaecf
5aaecf
diff --git a/ext/repo_repomdxml.c b/ext/repo_repomdxml.c
5aaecf
index 760d481f..b2a5b8dd 100644
5aaecf
--- a/ext/repo_repomdxml.c
5aaecf
+++ b/ext/repo_repomdxml.c
5aaecf
@@ -181,7 +181,7 @@ startElement(struct solv_xmlparser *xmlp, int state, const char *name, const cha
5aaecf
             while (value)
5aaecf
 	      {
5aaecf
 		char *p = strchr(value, ',');
5aaecf
-		if (*p)
5aaecf
+		if (p)
5aaecf
 		  *p++ = 0;
5aaecf
 		if (*value)
5aaecf
 		  repodata_add_poolstr_array(pd->data, SOLVID_META, REPOSITORY_UPDATES, value);
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 17ebf9e87309e8815df865fef8c6e44f185cb16b Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 09:50:06 +0100
5aaecf
Subject: [PATCH 2/7] Fix: Add va_end() before return
5aaecf
5aaecf
The va_end() performs cleanup.
5aaecf
If va_end() is not called before a function that calls va_start() returns,
5aaecf
the behavior is undefined.
5aaecf
---
5aaecf
 src/pool.c | 1 +
5aaecf
 1 file changed, 1 insertion(+)
5aaecf
5aaecf
diff --git a/src/pool.c b/src/pool.c
5aaecf
index 60cc0f49..f03b43f9 100644
5aaecf
--- a/src/pool.c
5aaecf
+++ b/src/pool.c
5aaecf
@@ -1505,6 +1505,7 @@ pool_debug(Pool *pool, int type, const char *format, ...)
5aaecf
         vprintf(format, args);
5aaecf
       else
5aaecf
         vfprintf(stderr, format, args);
5aaecf
+      va_end(args);
5aaecf
       return;
5aaecf
     }
5aaecf
   vsnprintf(buf, sizeof(buf), format, args);
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 24acb5dea18bef01fae13db414b2369dfae951b4 Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 10:14:04 +0100
5aaecf
Subject: [PATCH 3/7] Fix: Memory leaks
5aaecf
5aaecf
---
5aaecf
 ext/repo_rpmdb.c  | 16 ++++++++++++++++
5aaecf
 ext/testcase.c    |  4 ++++
5aaecf
 tools/repo2solv.c |  1 +
5aaecf
 3 files changed, 21 insertions(+)
5aaecf
5aaecf
diff --git a/ext/repo_rpmdb.c b/ext/repo_rpmdb.c
5aaecf
index 75bb6780..ff939978 100644
5aaecf
--- a/ext/repo_rpmdb.c
5aaecf
+++ b/ext/repo_rpmdb.c
5aaecf
@@ -1939,6 +1939,8 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (fread(lead, 96 + 16, 1, fp) != 1 || getu32(lead) != 0xedabeedb)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: not a rpm", rpm);
5aaecf
+      solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -1951,12 +1953,16 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (lead[78] != 0 || lead[79] != 5)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: not a rpm v5 header", rpm);
5aaecf
+      solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
   if (getu32(lead + 96) != 0x8eade801)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: bad signature header", rpm);
5aaecf
+      solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -1965,6 +1971,8 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (sigcnt >= MAX_SIG_CNT || sigdsize >= MAX_SIG_DSIZE)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: bad signature header", rpm);
5aaecf
+      solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -1975,6 +1983,8 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
     {
5aaecf
       if (!headfromfp(&state, rpm, fp, lead + 96, sigcnt, sigdsize, sigpad, chksumh, leadsigchksumh))
5aaecf
 	{
5aaecf
+      solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
 	  fclose(fp);
5aaecf
 	  return 0;
5aaecf
 	}
5aaecf
@@ -2014,6 +2024,8 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
 	  if (fread(lead, l, 1, fp) != 1)
5aaecf
 	    {
5aaecf
 	      pool_error(pool, -1, "%s: unexpected EOF", rpm);
5aaecf
+          solv_chksum_free(leadsigchksumh, NULL);
5aaecf
+          solv_chksum_free(chksumh, NULL);
5aaecf
 	      fclose(fp);
5aaecf
 	      return 0;
5aaecf
 	    }
5aaecf
@@ -2034,6 +2046,7 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (fread(lead, 16, 1, fp) != 1)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: unexpected EOF", rpm);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -2042,6 +2055,7 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (getu32(lead) != 0x8eade801)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: bad header", rpm);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -2050,6 +2064,7 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
   if (sigcnt >= MAX_HDR_CNT || sigdsize >= MAX_HDR_DSIZE)
5aaecf
     {
5aaecf
       pool_error(pool, -1, "%s: bad header", rpm);
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
@@ -2057,6 +2072,7 @@ repo_add_rpm(Repo *repo, const char *rpm, int flags)
5aaecf
 
5aaecf
   if (!headfromfp(&state, rpm, fp, lead, sigcnt, sigdsize, 0, chksumh, 0))
5aaecf
     {
5aaecf
+      solv_chksum_free(chksumh, NULL);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
     }
5aaecf
diff --git a/ext/testcase.c b/ext/testcase.c
5aaecf
index aa72a8d7..3901d90d 100644
5aaecf
--- a/ext/testcase.c
5aaecf
+++ b/ext/testcase.c
5aaecf
@@ -2348,6 +2348,7 @@ testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const cha
5aaecf
 	  if (fclose(fp))
5aaecf
 	    {
5aaecf
 	      pool_error(solv->pool, 0, "testcase_write: write error");
5aaecf
+	      solv_free(result);
5aaecf
 	      strqueue_free(&sq);
5aaecf
 	      return 0;
5aaecf
 	    }
5aaecf
@@ -2360,12 +2361,14 @@ testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const cha
5aaecf
   if (!(fp = fopen(out, "w")))
5aaecf
     {
5aaecf
       pool_error(solv->pool, 0, "testcase_write: could not open '%s' for writing", out);
5aaecf
+      solv_free(cmd);
5aaecf
       strqueue_free(&sq);
5aaecf
       return 0;
5aaecf
     }
5aaecf
   if (*cmd && fwrite(cmd, strlen(cmd), 1, fp) != 1)
5aaecf
     {
5aaecf
       pool_error(solv->pool, 0, "testcase_write: write error");
5aaecf
+      solv_free(cmd);
5aaecf
       strqueue_free(&sq);
5aaecf
       fclose(fp);
5aaecf
       return 0;
5aaecf
@@ -2373,6 +2376,7 @@ testcase_write_mangled(Solver *solv, const char *dir, int resultflags, const cha
5aaecf
   if (fclose(fp))
5aaecf
     {
5aaecf
       pool_error(solv->pool, 0, "testcase_write: write error");
5aaecf
+      solv_free(cmd);
5aaecf
       strqueue_free(&sq);
5aaecf
       return 0;
5aaecf
     }
5aaecf
diff --git a/tools/repo2solv.c b/tools/repo2solv.c
5aaecf
index e055e408..30a41f42 100644
5aaecf
--- a/tools/repo2solv.c
5aaecf
+++ b/tools/repo2solv.c
5aaecf
@@ -208,6 +208,7 @@ read_plaindir_repo(Repo *repo, const char *dir)
5aaecf
 	repodata_set_location(data, p, 0, 0, bp[0] == '.' && bp[1] == '/' ? bp + 2 : bp);
5aaecf
       solv_free(rpm);
5aaecf
     }
5aaecf
+  solv_free(buf);
5aaecf
   fclose(fp);
5aaecf
   while (waitpid(pid, &wstatus, 0) == -1)
5aaecf
     {
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 6800ad0aaaf709df45c22d92320be42d51b6c704 Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 10:22:09 +0100
5aaecf
Subject: [PATCH 4/7] Fix: testsolv segfault
5aaecf
5aaecf
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x7fab0e11bf2b bp 0x7ffdfc044b70 sp 0x7ffdfc044a90 T0)
5aaecf
0 0x7fab0e11bf2a in testcase_str2dep_complex /home/company/real_sanitize/libsolv-master/ext/testcase.c:577
5aaecf
1 0x7fab0e11c80f in testcase_str2dep /home/company/real_sanitize/libsolv-master/ext/testcase.c:656
5aaecf
2 0x7fab0e12e64a in testcase_read /home/company/real_sanitize/libsolv-master/ext/testcase.c:2952
5aaecf
3 0x402aa5 in main /home/company/real_sanitize/libsolv-master/tools/testsolv.c:148
5aaecf
4 0x7fab0d9d2a3f in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x20a3f)
5aaecf
5 0x401bb8 in _start (/home/company/real_sanitize/libsolv-master/build/install/bin/testsolv+0x401bb8)
5aaecf
---
5aaecf
 ext/testcase.c | 2 ++
5aaecf
 1 file changed, 2 insertions(+)
5aaecf
5aaecf
diff --git a/ext/testcase.c b/ext/testcase.c
5aaecf
index 3901d90d..dd20de14 100644
5aaecf
--- a/ext/testcase.c
5aaecf
+++ b/ext/testcase.c
5aaecf
@@ -571,6 +571,8 @@ testcase_str2dep_complex(Pool *pool, const char **sp, int relop)
5aaecf
   Id flags, id, id2, namespaceid = 0;
5aaecf
   struct oplist *op;
5aaecf
 
5aaecf
+  if (!s)
5aaecf
+    return 0;
5aaecf
   while (*s == ' ' || *s == '\t')
5aaecf
     s++;
5aaecf
   if (!strncmp(s, "namespace:", 10))
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 3c43749d26145e26e0337238ca566aeae157a654 Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 10:27:15 +0100
5aaecf
Subject: [PATCH 5/7] Fix: testsolv segfaults
5aaecf
5aaecf
ERROR: AddressSanitizer: SEGV on unknown address 0x0000000002f0 (pc 0x7f31501d3bd2 bp 0x7ffcfe4d4a50 sp 0x7ffcfe4d4a30 T0)
5aaecf
0 0x7f31501d3bd1 in pool_whatprovides /home/company/real_sanitize/libsolv-master/src/pool.h:331
5aaecf
1 0x7f31501d895e in testcase_str2solvid /home/company/real_sanitize/libsolv-master/ext/testcase.c:793
5aaecf
2 0x7f31501e8388 in testcase_read /home/company/real_sanitize/libsolv-master/ext/testcase.c:2807
5aaecf
3 0x402aa5 in main /home/company/real_sanitize/libsolv-master/tools/testsolv.c:148
5aaecf
4 0x7f314fa8da3f in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x20a3f)
5aaecf
5 0x401bb8 in _start (/home/company/real_sanitize/libsolv-master/build/install/bin/testsolv+0x401bb8)
5aaecf
5aaecf
ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000 (pc 0x7f5af9e7815f bp 0x7ffc4c843a40 sp 0x7ffc4c8436c0 T0)
5aaecf
0 0x7f5af9e7815e in testcase_read /home/company/real_sanitize/libsolv-master/ext/testcase.c:2799
5aaecf
1 0x402aa5 in main /home/company/real_sanitize/libsolv-master/tools/testsolv.c:148
5aaecf
2 0x7f5af971da3f in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x20a3f)
5aaecf
3 0x401bb8 in _start (/home/company/real_sanitize/libsolv-master/build/install/bin/testsolv+0x401bb8)
5aaecf
---
5aaecf
 ext/testcase.c | 2 +-
5aaecf
 1 file changed, 1 insertion(+), 1 deletion(-)
5aaecf
5aaecf
diff --git a/ext/testcase.c b/ext/testcase.c
5aaecf
index dd20de14..83467fe2 100644
5aaecf
--- a/ext/testcase.c
5aaecf
+++ b/ext/testcase.c
5aaecf
@@ -2772,7 +2772,7 @@ testcase_read(Pool *pool, FILE *fp, const char *testcase, Queue *job, char **res
5aaecf
 	{
5aaecf
 	  int i = strlen(pieces[1]);
5aaecf
 	  s = strchr(pieces[1], '(');
5aaecf
-	  if (!s && pieces[1][i - 1] != ')')
5aaecf
+	  if (!s || pieces[1][i - 1] != ')')
5aaecf
 	    {
5aaecf
 	      pool_error(pool, 0, "testcase_read: bad namespace '%s'", pieces[1]);
5aaecf
 	    }
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 3723154d0cca4ee9b08e35dfa48a90a6659d05c8 Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 12:40:42 +0100
5aaecf
Subject: [PATCH 6/7] Fix: Be sure that NONBLOCK is set
5aaecf
5aaecf
---
5aaecf
 examples/solv/fastestmirror.c | 6 +++++-
5aaecf
 1 file changed, 5 insertions(+), 1 deletion(-)
5aaecf
5aaecf
diff --git a/examples/solv/fastestmirror.c b/examples/solv/fastestmirror.c
5aaecf
index d2ebd97a..0ee4e73b 100644
5aaecf
--- a/examples/solv/fastestmirror.c
5aaecf
+++ b/examples/solv/fastestmirror.c
5aaecf
@@ -68,7 +68,11 @@ findfastest(char **urls, int nurls)
5aaecf
 	  socks[i] = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
5aaecf
 	  if (socks[i] >= 0)
5aaecf
 	    {
5aaecf
-	      fcntl(socks[i], F_SETFL, O_NONBLOCK);
5aaecf
+	      if (fcntl(socks[i], F_SETFL, O_NONBLOCK) == -1)
5aaecf
+            {
5aaecf
+		      close(socks[i]);
5aaecf
+		      socks[i] = -1;
5aaecf
+            }
5aaecf
 	      if (connect(socks[i], result->ai_addr, result->ai_addrlen) == -1)
5aaecf
 		{
5aaecf
 		  if (errno != EINPROGRESS)
5aaecf
-- 
5aaecf
2.19.2
5aaecf
5aaecf
5aaecf
From 52bf7e7e56e16928b449cad7fb803eb38555db0a Mon Sep 17 00:00:00 2001
5aaecf
From: Jaroslav Rohel <jrohel@redhat.com>
5aaecf
Date: Tue, 11 Dec 2018 12:58:34 +0100
5aaecf
Subject: [PATCH 7/7] Don't set values that are never read
5aaecf
5aaecf
---
5aaecf
 ext/pool_fileconflicts.c | 1 -
5aaecf
 ext/repo_appdata.c       | 2 +-
5aaecf
 ext/repo_comps.c         | 2 +-
5aaecf
 src/cleandeps.c          | 1 -
5aaecf
 src/dirpool.c            | 2 +-
5aaecf
 src/order.c              | 1 -
5aaecf
 src/repopage.c           | 1 -
5aaecf
 7 files changed, 3 insertions(+), 7 deletions(-)
5aaecf
5aaecf
diff --git a/ext/pool_fileconflicts.c b/ext/pool_fileconflicts.c
5aaecf
index eaeb52b2..2fd3d540 100644
5aaecf
--- a/ext/pool_fileconflicts.c
5aaecf
+++ b/ext/pool_fileconflicts.c
5aaecf
@@ -590,7 +590,6 @@ findfileconflicts_alias_cb(void *cbdatav, const char *fn, struct filelistinfo *i
5aaecf
 
5aaecf
   if (!info->dirlen)
5aaecf
     return;
5aaecf
-  dp = fn + info->dirlen;
5aaecf
   if (info->diridx != cbdata->lastdiridx)
5aaecf
     {
5aaecf
       cbdata->lastdiridx = info->diridx;
5aaecf
diff --git a/ext/repo_appdata.c b/ext/repo_appdata.c
5aaecf
index 62faf2d8..69d46386 100644
5aaecf
--- a/ext/repo_appdata.c
5aaecf
+++ b/ext/repo_appdata.c
5aaecf
@@ -103,7 +103,7 @@ startElement(struct solv_xmlparser *xmlp, int state, const char *name, const cha
5aaecf
 {
5aaecf
   struct parsedata *pd = xmlp->userdata;
5aaecf
   Pool *pool = pd->pool;
5aaecf
-  Solvable *s = pd->solvable;
5aaecf
+  Solvable *s;
5aaecf
   const char *type;
5aaecf
 
5aaecf
   /* ignore all language tags */
5aaecf
diff --git a/ext/repo_comps.c b/ext/repo_comps.c
5aaecf
index 255ecb16..e59f8d12 100644
5aaecf
--- a/ext/repo_comps.c
5aaecf
+++ b/ext/repo_comps.c
5aaecf
@@ -107,7 +107,7 @@ startElement(struct solv_xmlparser *xmlp, int state, const char *name, const cha
5aaecf
 {
5aaecf
   struct parsedata *pd = xmlp->userdata;
5aaecf
   Pool *pool = pd->pool;
5aaecf
-  Solvable *s = pd->solvable;
5aaecf
+  Solvable *s;
5aaecf
 
5aaecf
   switch(state)
5aaecf
     {
5aaecf
diff --git a/src/cleandeps.c b/src/cleandeps.c
5aaecf
index 1da28f6e..b2fde317 100644
5aaecf
--- a/src/cleandeps.c
5aaecf
+++ b/src/cleandeps.c
5aaecf
@@ -748,7 +748,6 @@ solver_createcleandepsmap(Solver *solv, Map *cleandepsmap, int unneeded)
5aaecf
 	    continue;
5aaecf
 	  if (strncmp(pool_id2str(pool, s->name), "pattern:", 8) != 0)
5aaecf
 	    continue;
5aaecf
-	  dp = s->repo->idarraydata + s->requires;
5aaecf
 	  for (dp = s->repo->idarraydata + s->requires; *dp; dp++)
5aaecf
 	    FOR_PROVIDES(p, pp, *dp)
5aaecf
 	      if (pool->solvables[p].repo == installed)
5aaecf
diff --git a/src/dirpool.c b/src/dirpool.c
5aaecf
index afb26ea5..bed9435e 100644
5aaecf
--- a/src/dirpool.c
5aaecf
+++ b/src/dirpool.c
5aaecf
@@ -85,7 +85,7 @@ dirpool_make_dirtraverse(Dirpool *dp)
5aaecf
     return;
5aaecf
   dp->dirs = solv_extend_resize(dp->dirs, dp->ndirs, sizeof(Id), DIR_BLOCK);
5aaecf
   dirtraverse = solv_calloc_block(dp->ndirs, sizeof(Id), DIR_BLOCK);
5aaecf
-  for (parent = 0, i = 0; i < dp->ndirs; i++)
5aaecf
+  for (i = 0; i < dp->ndirs; i++)
5aaecf
     {
5aaecf
       if (dp->dirs[i] > 0)
5aaecf
 	continue;
5aaecf
diff --git a/src/order.c b/src/order.c
5aaecf
index c92c3328..cfde40c9 100644
5aaecf
--- a/src/order.c
5aaecf
+++ b/src/order.c
5aaecf
@@ -1066,7 +1066,6 @@ transaction_order(Transaction *trans, int flags)
5aaecf
 #if 0
5aaecf
 printf("do %s [%d]\n", pool_solvid2str(pool, te->p), temedianr[i]);
5aaecf
 #endif
5aaecf
-      s = pool->solvables + te->p;
5aaecf
       for (j = te->edges; od.invedgedata[j]; j++)
5aaecf
 	{
5aaecf
 	  struct _TransactionElement *te2 = od.tes + od.invedgedata[j];
5aaecf
diff --git a/src/repopage.c b/src/repopage.c
5aaecf
index 2b7a863b..85d53eb9 100644
5aaecf
--- a/src/repopage.c
5aaecf
+++ b/src/repopage.c
5aaecf
@@ -399,7 +399,6 @@ match_done:
5aaecf
 	      litlen -= 32;
5aaecf
 	    }
5aaecf
 	}
5aaecf
-      litofs = 0;
5aaecf
     }
5aaecf
   return oo;
5aaecf
 }
5aaecf
-- 
5aaecf
2.19.2
5aaecf