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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2019-01-17 23:17:30 +0300
committerJörg Müller <nexyon@gmail.com>2019-01-17 23:17:30 +0300
commitd3e856cdfc0f184c230166046dd939baa0ac7a28 (patch)
tree4247f4e4b0c36a80618a2148575a547533da7b1b /extern/audaspace/bindings/C/AUD_Sound.cpp
parent16fac2149b7ec830dc5ef2f9ebbfcd226ecec581 (diff)
Audaspace: porting changes from upstream.
- Silence some warnings. - Fix: Python API memory leak. - Fix for T54490: VSE breaks when I insert or remove headphones
Diffstat (limited to 'extern/audaspace/bindings/C/AUD_Sound.cpp')
-rw-r--r--extern/audaspace/bindings/C/AUD_Sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/audaspace/bindings/C/AUD_Sound.cpp b/extern/audaspace/bindings/C/AUD_Sound.cpp
index 30860acde62..1f40f5c608b 100644
--- a/extern/audaspace/bindings/C/AUD_Sound.cpp
+++ b/extern/audaspace/bindings/C/AUD_Sound.cpp
@@ -212,7 +212,7 @@ AUD_API const char* AUD_Sound_write(AUD_Sound* sound, const char* filename, AUD_
std::shared_ptr<IWriter> writer = FileWriter::createWriter(filename, specs, static_cast<Container>(container), static_cast<Codec>(codec), bitrate);
FileWriter::writeReader(reader, writer, 0, buffersize);
}
- catch(Exception& e)
+ catch(Exception&)
{
return "An exception occured while writing.";
}