22372924 Restore Python 3.5 getrandom patch for FOSS Evaluation build
authorJohn Beck <John.Beck@Oracle.COM>
Tue, 15 Dec 2015 09:07:54 -0800
changeset 5199 36df3dbf2f0f
parent 5198 01f1f0bd6548
child 5200 07b9fdb30f45
22372924 Restore Python 3.5 getrandom patch for FOSS Evaluation build
components/python/python35/patches/26-getrandom.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/python35/patches/26-getrandom.patch	Tue Dec 15 09:07:54 2015 -0800
@@ -0,0 +1,15 @@
+This patch was originated in-house.  It is to work around a bug (21825650)
+in getrandom(2).  That bug was fixed in S12, and in an 11.3 SRU, but not in
+time for 11.3 GA, so this patch is still needed for FOSS Evaluation builds.
+
+--- Python-3.5.1/Python/random.c.~1~	2015-08-25 10:19:14.000000000 -0700
++++ Python-3.5.1/Python/random.c	2015-09-02 14:18:51.799090171 -0700
+@@ -136,7 +136,7 @@
+         }
+ 
+         if (n < 0) {
+-            if (errno == ENOSYS) {
++            if (errno == ENOSYS || errno == EINVAL) {
+                 getrandom_works = 0;
+                 return 0;
+             }