[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Location of the access violation when running Ruby binding tests in Windows

From: Joe Swatosh <joe.swatosh_at_gmail.com>
Date: 2007-01-03 02:57:22 CET

Hi All,

I built a debug version to try to help isolate the problem, and so
far, the aborts are occuring in
subversion/bindings/swig/ruby/libsvn_swig_ruby/swigutil_rb.c in the
find_swig_type_object function some where in the "if" statement
(function pasted below).

I hope this is a hint that helps some one explain it all.

Thanks,

--
Joe Swatosh
static VALUE
find_swig_type_object(int num, VALUE *objects)
{
  VALUE re = swig_type_regex();
  int i;
  for (i = 0; i < num; i++) {
    if (RTEST(rb_reg_match(re,
                           rb_funcall(rb_obj_class(objects[i]),
                                      rb_id_name(),
                                      0)))) {
      return objects[i];
    }
  }
  return Qnil;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jan 3 02:57:32 2007

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.