Changes between Version 1 and Version 2 of Ticket #4491, comment 1
- Timestamp:
- 06/29/2019 11:43:13 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4491, comment 1
v1 v2 1 1 This can be fixed by a sed: 2 2 {{{ 3 3 crypto/rand/rand_lib.c 4 4 @@ -235,8 +235,9 @@ size_t rand_drbg_get_nonce(RAND_DRBG *drbg, … … 13 13 if (pool == NULL) 14 14 return 0; 15 15 }}} 16 16 ================== 17 17 {{{ 18 18 sed -i '/\} data/s/ =.*$/;\n memset(\&data, 0, sizeof(data));/' \ 19 19 crypto/rand/rand_lib.c 20 }}}