Switch from boost::shared_ptr to std::shared_ptr. |
|
More...
|
about 11 years ago
|
Instantiate shared_ptr separately to make older GCCs happy. |
|
More...
|
about 11 years ago
|
Replace deprecated auto_ptr with unique_ptr. |
|
More...
|
about 11 years ago
|
GCC seems unhappy with a shared_ptr passed by nonconst-reference. |
|
More...
|
about 11 years ago
|
Compile in C++11 mode to enable new language features. |
|
More...
|
about 11 years ago
|
Chuck out non-standard attributes and fix up a UB bit shift. |
|
More...
|
about 11 years ago
|
C++11 mode is unhappy with the conversion to bool; use get() instead. |
|
More...
|
about 11 years ago
|
Correct ordering of initializers. |
|
More...
|
about 11 years ago
|
Make sure to initialize member array Memory::_checkpoint in constructor. |
|
More...
|
about 11 years ago
|
Make sure to initialize TestState::laststate in constructor. |
|
More...
|
about 11 years ago
|
Make sure to initialize member variables _x and _y in MovieTester constructor. |
|
More...
|
about 11 years ago
|
Savannah #42385: fix signed integer overflow by using larger datatypes. |
|
More...
|
about 11 years ago
|
Fix another use-after-free. |
|
More...
|
about 11 years ago
|
Fix use after free: when run() returns after the gtk_main_quit() is called, a callback is still registered with then-deleted GtkGui, and it is invoked when a new GtkGui calls gtk_main(). This commit unregisters the callback. |
|
More...
|
about 11 years ago
|
Fix the assertion that happens since the Gnash window is being explicitly destroyed: Gtk-CRITICAL **: IA__gtk_style_detach: assertion 'style->attach_count > 0' failed by attaching a style to the gnash_canvas GdkWindow, rather than just referencing one. |
|
More...
|
about 11 years ago
|
Explicitly destroy the main window. This implicit in a normal run, but doesn't happen when multiple SWFs are given for Gnash to play. |
|
More...
|
about 11 years ago
|
Savannah #42375: Make Date component setting functions no-ops if the Date is NaN. |
|
More...
|
about 11 years ago
|
Add a note about extensions support. |
|
More...
|
about 11 years ago
|
Add a test for #42375. |
|
More...
|
about 11 years ago
|
Making one of the operands unsigned should promote the other ones, already making the overflow a defined operation. |
|
More...
|
about 11 years ago
|
Savannah #42372: Avoid UB in integer overflow. |
|
More...
|
about 11 years ago
|
Redirect stderr to outlog file as well. |
|
More...
|
about 11 years ago
|
Enable visibility and disable extensions support by default. |
|
More...
|
about 11 years ago
|
Don't try to read zero bits. |
|
More...
|
about 11 years ago
|
Don't call read_sint with a zero bit count, yielding a negative bit shift, which is an undefined operation. |
|
More...
|
about 11 years ago
|
Remove unused code. |
|
More...
|
about 11 years ago
|
To keep ubsan (undefined behaviour sanitizer) happy, store ParseStatus, an enum as an int, because it can be set to any integer value. |
|
More...
|
about 11 years ago
|
Savannah #42200: Don't dereference a null pointer. |
|
More...
|
about 11 years ago
|
Squash GCC 4.9 warnings by removing unused code from compilation. |
|
More...
|
about 11 years ago
|
Increase verbosity for LCTestRunner. |
|
More...
|
about 11 years ago
|