sci-biology/muscle: remove unused patch
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Sun, 29 Jan 2017 08:41:10 +0000 (09:41 +0100)
committerDavid Seifert <soap@gentoo.org>
Sun, 29 Jan 2017 20:09:13 +0000 (21:09 +0100)
Closes: https://github.com/gentoo/gentoo/pull/3708

sci-biology/muscle/files/3.7-bufferoverflow.patch [deleted file]

diff --git a/sci-biology/muscle/files/3.7-bufferoverflow.patch b/sci-biology/muscle/files/3.7-bufferoverflow.patch
deleted file mode 100644 (file)
index 670ad64..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/globalslinux.cpp b/globalslinux.cpp
-index 63baaa1..b1cfcb0 100644
---- a/globalslinux.cpp
-+++ b/globalslinux.cpp
-@@ -156,7 +156,7 @@ double GetRAMSizeMB()
-                       }
-               return DEFAULT_RAM;
-               }
--      int Bytes = atoi(pMem+9)*1000;
-+      long Bytes = atol(pMem+9)*1000;
-       return ((double) Bytes)/1e6;
-       }
-diff --git a/progress.cpp b/progress.cpp
-index a0e91bb..f9b093e 100644
---- a/progress.cpp
-+++ b/progress.cpp
-@@ -41,7 +41,7 @@ const char *MemToStr(double MB)
-       if (MB < 0)
-               return "";
--      static char Str[9];
-+      static char Str[16];
-       static double MaxMB = 0;
-       static double RAMMB = 0;