[Monodevelop-patches-list] r2616 - in trunk/MonoDevelop/Core/src/MonoDevelop.Base: . Services/ParserService
John Luke <jluke@cfl.rr.com>
jluke at mono-cvs.ximian.com
Thu Jun 30 14:30:47 EDT 2005
Author: jluke
Date: 2005-06-30 14:30:47 -0400 (Thu, 30 Jun 2005)
New Revision: 2616
Modified:
trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/ParserService/AssemblyInformation.cs
Log:
2005-06-30 John Luke <john.luke at gmail.com>
* Services/ParserService/AssembyInformation.cs: fix possible nullref
patch from shoehn at web.de (Sebastian)
fixes bug #75418
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-06-30 18:25:49 UTC (rev 2615)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog 2005-06-30 18:30:47 UTC (rev 2616)
@@ -1,3 +1,9 @@
+2005-06-30 John Luke <john.luke at gmail.com>
+
+ * Services/ParserService/AssembyInformation.cs: fix possible nullref
+ patch from shoehn at web.de (Sebastian)
+ fixes bug #75418
+
2005-06-28 Raja R Harinath <rharinath at novell.com>
* Makefile.am (FILES): Move AssemblyInfo.cs ...
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/ParserService/AssemblyInformation.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/ParserService/AssemblyInformation.cs 2005-06-30 18:25:49 UTC (rev 2615)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/ParserService/AssemblyInformation.cs 2005-06-30 18:30:47 UTC (rev 2616)
@@ -110,7 +110,7 @@
try {
asm = Assembly.LoadFrom (fileName);
if (asm == null)
- Assembly.LoadWithPartialName (Path.GetFileNameWithoutExtension (fileName));
+ asm = Assembly.LoadWithPartialName (Path.GetFileNameWithoutExtension (fileName));
} catch {
}
if(asm == null) {
More information about the Monodevelop-patches-list
mailing list