diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-01 11:52:43 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-03-01 11:52:43 +0100 |
commit | 04c4679074e505adcdd1611676baab0c06466934 (patch) | |
tree | f2cfb919b615c98adb79f6924cd3cf60a17a2260 /src/DabMux.cpp | |
parent | 715705de018f815b3695af983c8d6623ba73a9ae (diff) | |
download | dabmux-04c4679074e505adcdd1611676baab0c06466934.tar.gz dabmux-04c4679074e505adcdd1611676baab0c06466934.tar.bz2 dabmux-04c4679074e505adcdd1611676baab0c06466934.zip |
Check that FIGs don't write too many bytes
Diffstat (limited to 'src/DabMux.cpp')
-rw-r--r-- | src/DabMux.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp index c0f5ad0..3185fb3 100644 --- a/src/DabMux.cpp +++ b/src/DabMux.cpp @@ -529,6 +529,10 @@ int main(int argc, char *argv[]) etiLog.level(error) << "Caught out of range exception : " << except.what(); returnCode = 1; } + catch (const std::logic_error& except) { + etiLog.level(error) << "Caught logic error : " << except.what(); + returnCode = 2; + } catch (const std::runtime_error& except) { etiLog.level(error) << "Caught runtime error : " << except.what(); returnCode = 2; |