- Feb 17, 2016
-
-
Hugo Beauzée-Luyssen authored
-
Hugo Beauzée-Luyssen authored
-
I wrote a hackish script to locate instances where new can throw but where the original author has assumed that it will return nullptr when there is a memory allocation problem. In short, cases such as `ptr = new T; if (ptr) ...` has now been changed to `ptr = new (std::nothrow) T; if (ptr) ...`. Since a throwing `new` will always yield a non-nullptr pointer, code that follows similar patterns to the previous example are therefor redundant. Example (from modules/access/dshow/filter.cpp): *ppEnum = new CaptureEnumMediaTypes( p_input, p_pin, this ); if( *ppEnum == NULL ) return E_OUTOFMEMORY; // unreachable, new will never return NULL Fixed: *ppEnum = new (std::nothrow) CaptureEnumMediaTypes( p_input, p_pin, this ); if( *ppEnum == NULL ) return E_OUTOFMEMORY; Signed-off-by:
Hugo Beauzée-Luyssen <hugo@beauzee.fr>
-
- Feb 16, 2016
-
-
Jean-Baptiste Kempf authored
Close #15150
-
Close #16625 Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Thomas Guillem authored
bins.patch is now enough.
-
- Feb 15, 2016
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Hugo Beauzée-Luyssen authored
cid #1352638
-
Hugo Beauzée-Luyssen authored
cid #1352639
-
Thomas Guillem authored
-
Thomas Guillem authored
-
Thomas Guillem authored
And don't do a strdup when it's not necessary
-
Hugo Beauzée-Luyssen authored
cid #1352643a
-
Hugo Beauzée-Luyssen authored
cid #1048920
-
Hugo Beauzée-Luyssen authored
cid #1251057
-
Hugo Beauzée-Luyssen authored
cid #1313788
-
- Feb 14, 2016
-
-
François Cartegnie authored
sstream doing broken conversion for a while. And I still don't know why some ppl including me have that problem requiring to setlocale on iostream :/
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
- Appropriately treat warnings as errors wherever needed - Remove unnecessary warnings - Fix comments in few places Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Feb 13, 2016
-
-
Thomas Guillem authored
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
because we need to ignore extension id
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
allows updating existing entries through merge
-
François Cartegnie authored
-
François Cartegnie authored
-
François Cartegnie authored
-
- Feb 12, 2016
-
-
Thomas Guillem authored
It's now unused.
-
Thomas Guillem authored
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
-- has the advantage of building on mingw without a patch deprecates https://patches.videolan.org/patch/12210/ Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
-- deprecates https://patches.videolan.org/patch/12214/ Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-