This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Restore gnu.gcj.runtime.NameFinder.remove_unknown
Michael Koch writes:
> On Thu, Feb 16, 2006 at 12:24:21PM +0000, Andrew Haley wrote:
> > + private static final boolean remove_unknown
> > + = Boolean.valueOf(System.getProperty
> > + ("gnu.gcj.runtime.NameFinder.remove_unknown", "true")
> > + ).booleanValue();
>
> Shouldnt this use SystemProperties.getProperty() to circumvent the
> security check? Just an idea...
I guess so. There's also use_addr2line in the same class.
Andrew.