diff options
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | gc.c | 2 | ||||
| -rw-r--r-- | version.h | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -2,6 +2,8 @@ Thu Jul 9 11:22:00 2009 Kirk Haines <khaines@ruby-lang.org> * gc.c: Add a check for DATA_PTR(obj) to run_final as a stopgap fix for debilitating segfaults. + * gc.c: Fixes warning: passing argument 1 of 'add_freelist' makes pointer from integer without a cast + Mon Jun 8 12:46:00 2009 Kirk Haines <khaines@ruby-lang.org> * lib/soap/mimemessage.rb: Fixed a typo -- conent -> content @@ -1193,7 +1193,7 @@ void rb_gc_force_recycle(p) VALUE p; { - add_freelist(p); + add_freelist((RVALUE*)p); } static inline void @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2009-06-08" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20090608 -#define RUBY_PATCHLEVEL 370 +#define RUBY_PATCHLEVEL 371 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |
