Skip to content

Commit

Permalink
Fix uninitialized variable error (flussence++)
Browse files Browse the repository at this point in the history
  • Loading branch information
sorear committed Mar 6, 2011
1 parent c416de7 commit cbe9ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/CLRBackend.cs
Expand Up @@ -3056,7 +3056,7 @@ class NamProcessor {
handlers["rawscall"] = delegate(NamProcessor th, object[] z) {
string name = JScalar.S(z[1]);
int ixn = name.LastIndexOf(':');
Type cpsrt;
Type cpsrt = null;
if (ixn >= 0) {
cpsrt = Type.GetType(name.Substring(ixn+1));
name = name.Substring(0, ixn);
Expand Down

0 comments on commit cbe9ac1

Please sign in to comment.