Re: darwin shared library patch

From: Eric Melville <eric@...>
Date: 2002-10-16 22:16:43 UTC
List: ruby-core #550
> OK, I figured it out.  Ruby coredumped where environ is dereferenced
> like environ[max], which implies this:
> 
> - #define environ *_NSGetEnviron()
> + #define environ (*_NSGetEnviron())
> 
> With this fix, the test passed without a single error.  I'll commit
> the patch later after doing more testing.

I see; sorry if I led you down the wrong path. Feel free to tune my patch
at will.

In This Thread