Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'generic/sodium/src/decrypter/imp.rs')
-rw-r--r--generic/sodium/src/decrypter/imp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/sodium/src/decrypter/imp.rs b/generic/sodium/src/decrypter/imp.rs
index 6486f6d05..f722314ed 100644
--- a/generic/sodium/src/decrypter/imp.rs
+++ b/generic/sodium/src/decrypter/imp.rs
@@ -486,7 +486,7 @@ impl Decrypter {
let block_size = {
let mut mutex_state = self.state.lock().unwrap();
// This will only be run after READY state,
- // and will be guaranted to be initialized
+ // and will be guaranteed to be initialized
let state = mutex_state.as_mut().unwrap();
// Cleanup the adapter
state.adapter.clear();
@@ -508,7 +508,7 @@ impl Decrypter {
let mut state = self.state.lock().unwrap();
// This will only be run after READY state,
- // and will be guaranted to be initialized
+ // and will be guaranteed to be initialized
let state = state.as_mut().unwrap();
state.decrypt_into_adapter(self, &self.srcpad, &pulled_buffer, chunk_index)?;