Added ordinal comparison to string index search.
authorJarl Gullberg <jarl.gullberg@gmail.com>
Mon, 29 May 2017 16:59:37 +0000 (18:59 +0200)
committerJarl Gullberg <jarl.gullberg@gmail.com>
Mon, 29 May 2017 16:59:37 +0000 (18:59 +0200)
src/Generator.Rewrite/Program.cs

index 91c7b11..48e7a2f 100644 (file)
@@ -334,7 +334,7 @@ namespace OpenTK.Rewrite
                 // something like "type namespace.class::method(type arg)"
                 var module = il.Body.Method.FullName;
                 module = module.Substring(module.IndexOf(' ') + 1);
-                module = module.Substring(0, module.IndexOf("::"));
+                module = module.Substring(0, module.IndexOf("::", StringComparison.Ordinal));
                 module = module.Substring(0, module.LastIndexOf('.'));
 
                 // Only works for Graphics modules due to hardcoded use of