Commit 9fc6f5cd for xz

commit 9fc6f5cd8774ebef8d4e030f7081fb6984c0dc3f
Author: Lasse Collin <lasse.collin@tukaani.org>
Date:   Fri Sep 4 12:13:43 2026 +0300

    liblzma: mt dec: Clarify comments about mutex usage

diff --git a/src/liblzma/common/stream_decoder_mt.c b/src/liblzma/common/stream_decoder_mt.c
index a7817b84..44696bd9 100644
--- a/src/liblzma/common/stream_decoder_mt.c
+++ b/src/liblzma/common/stream_decoder_mt.c
@@ -250,13 +250,13 @@ struct lzma_stream_coder {
 	/// Amount of compressed data in Stream Header + Blocks that have
 	/// already been finished.
 	///
-	/// \note       Use mutex.
+	/// \note       Use mutex when worker threads might be active.
 	uint64_t progress_in;

 	/// Amount of uncompressed data in Blocks that have already
 	/// been finished.
 	///
-	/// \note       Use mutex.
+	/// \note       Use mutex when worker threads might be active.
 	uint64_t progress_out;