# HG changeset patch # User dsamersoff # Date 1449738353 -10800 # Node ID cd0fc9dee122bcf119ca66674408d2bfa26638db # Parent 30543d2a0a20346b2a8a288994499b7fbb4f1473 8139484: [Findbugs] new sun.jvm.hotspot.SAGetopt(String[]) may expose internal representation Summary: Clone array instead of just assign it Reviewed-by: dholmes diff -r 30543d2a0a20 -r cd0fc9dee122 hotspot/agent/src/share/classes/sun/jvm/hotspot/SAGetopt.java --- a/hotspot/agent/src/share/classes/sun/jvm/hotspot/SAGetopt.java Tue Nov 24 15:56:40 2015 -0800 +++ b/hotspot/agent/src/share/classes/sun/jvm/hotspot/SAGetopt.java Thu Dec 10 12:05:53 2015 +0300 @@ -37,7 +37,7 @@ private boolean _optreset; // special handling of first call public SAGetopt(String[] args) { - _argv = args; + _argv = args.clone(); _optind = 0; _optopt = 1; _optarg = null;