26
I Use This!
Inactive

Commits : Listings

Analyzed about 10 hours ago. based on code collected about 10 hours ago.
Jun 08, 2024 — Jun 08, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Switch from boost::shared_ptr to std::shared_ptr.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Instantiate shared_ptr separately to make older GCCs happy.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Replace deprecated auto_ptr with unique_ptr.
bjacques
as Bastiaan Jacques
More... about 11 years ago
GCC seems unhappy with a shared_ptr passed by nonconst-reference.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Compile in C++11 mode to enable new language features.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Chuck out non-standard attributes and fix up a UB bit shift.
bjacques
as Bastiaan Jacques
More... about 11 years ago
C++11 mode is unhappy with the conversion to bool; use get() instead.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Fix another use-after-free.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Savannah #42375: Make Date component setting functions no-ops if the Date is NaN.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Add a note about extensions support.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Add a test for #42375.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Making one of the operands unsigned should promote the other ones, already making the overflow a defined operation.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Savannah #42372: Avoid UB in integer overflow.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Remove unused code.
bjacques
as Bastiaan Jacques
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.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Savannah #42200: Don't dereference a null pointer.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Squash GCC 4.9 warnings by removing unused code from compilation.
bjacques
as Bastiaan Jacques
More... about 11 years ago
Increase verbosity for LCTestRunner.
bjacques
as Bastiaan Jacques
More... about 11 years ago