Mercurial > hg > orthanc
view Resources/Patches/dcmtk-3.6.0-dulparse-vulnerability.patch @ 3353:54cdad5a7228 emscripten-logging
Added a public function that will use emscripten-specific logging functions when using its SDK + scaffolding work. Build and UT OK on msvc15 x64. Not actually tested under *nix or emscripten yet
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Tue, 23 Apr 2019 21:40:57 +0200 |
parents | 6ac6193a7935 |
children |
line wrap: on
line source
diff -urEb dcmtk-3.6.0.orig/dcmnet/libsrc/dulparse.cc dcmtk-3.6.0/dcmnet/libsrc/dulparse.cc --- dcmtk-3.6.0.orig/dcmnet/libsrc/dulparse.cc 2010-12-01 09:26:36.000000000 +0100 +++ dcmtk-3.6.0/dcmnet/libsrc/dulparse.cc 2016-12-02 15:58:49.930540033 +0100 @@ -393,6 +393,8 @@ return cond; buf += length; + if (presentationLength < length) + return EC_MemoryExhausted; presentationLength -= length; DCMNET_TRACE("Successfully parsed Abstract Syntax"); break; @@ -404,12 +406,16 @@ cond = LST_Enqueue(&context->transferSyntaxList, (LST_NODE*)subItem); if (cond.bad()) return cond; buf += length; + if (presentationLength < length) + return EC_MemoryExhausted; presentationLength -= length; DCMNET_TRACE("Successfully parsed Transfer Syntax"); break; default: cond = parseDummy(buf, &length, presentationLength); buf += length; + if (presentationLength < length) + return EC_MemoryExhausted; presentationLength -= length; break; }