File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ patches:
21
21
patch_file : patches/1.9.100-0001-disable-sort-links.patch
22
22
- base_path : source_subfolder
23
23
patch_file : patches/1.9.100-0002-aws-plugin-conf.patch
24
+ - base_path : source_subfolder
25
+ patch_file : patches/1.9.100-0003-issue-1816.patch
24
26
" 1.8.130 " :
25
27
- base_path : source_subfolder
26
28
patch_file : patches/1.8.130-0001-disable-sort-links.patch
Original file line number Diff line number Diff line change
1
+ diff --git aws-cpp-sdk-text-to-speech/source/text-to-speech/TextToSpeechManager.cpp aws-cpp-sdk-text-to-speech/source/text-to-speech/TextToSpeechManager.cpp
2
+ index c633f3fabe..abb1ab7332 100644
3
+ --- aws-cpp-sdk-text-to-speech/source/text-to-speech/TextToSpeechManager.cpp
4
+ +++ aws-cpp-sdk-text-to-speech/source/text-to-speech/TextToSpeechManager.cpp
5
+ @@ -146,7 +146,6 @@ namespace Aws
6
+ AWS_LOGSTREAM_TRACE(CLASS_TAG, "Audio retrieved from Polly. " << result.GetContentType() << " with "
7
+ << result.GetRequestCharacters() << " characters syntesized");
8
+
9
+ - std::streamsize amountRead(0);
10
+ unsigned char buffer[BUFF_SIZE];
11
+
12
+ std::lock_guard<std::mutex> m(m_driverLock);
13
+ @@ -159,7 +158,6 @@ namespace Aws
14
+ AWS_LOGSTREAM_TRACE(CLASS_TAG, "Writing " << read << " bytes to device.");
15
+
16
+ successfullyPlayed = m_activeDriver->WriteBufferToDevice(buffer, (std::size_t)read);
17
+ - amountRead += read;
18
+ played = successfullyPlayed;
19
+ }
20
+
You can’t perform that action at this time.
0 commit comments