Changeset 49056 for trunk/src/wp-includes/sodium_compat/src/File.php
- Timestamp:
- 09/27/2020 04:44:01 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/sodium_compat/src/File.php
r46858 r49056 142 142 ParagonIE_Sodium_Compat::memzero($ephKeypair); 143 143 } catch (SodiumException $ex) { 144 unset($ephKeypair); 144 if (isset($ephKeypair)) { 145 unset($ephKeypair); 146 } 145 147 } 146 148 return $res; … … 329 331 ParagonIE_Sodium_Compat::memzero($ephKeypair); 330 332 } catch (SodiumException $ex) { 331 unset($ephKeypair); 333 if (isset($ephKeypair)) { 334 unset($ephKeypair); 335 } 332 336 } 333 337 return $res;
Note: See TracChangeset
for help on using the changeset viewer.