[Mono-bugs] [Bug 76571][Nor] New - Crash due to bad interaction between FAM file watcher and FileChooserDialog

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Oct 27 12:45:16 EDT 2005


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by lluis at ximian.com.

http://bugzilla.ximian.com/show_bug.cgi?id=76571

--- shadow/76571	2005-10-27 12:45:16.000000000 -0400
+++ shadow/76571.tmp.7337	2005-10-27 12:45:16.000000000 -0400
@@ -0,0 +1,41 @@
+Bug#: 76571
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: lluis at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Crash due to bad interaction between FAM file watcher and FileChooserDialog
+
+The following test case crashes with a SIGSEV in SUSE 10:
+
+using System;
+using System.IO;
+using Gtk;
+
+class MainClass
+{
+        public static void Main (string[] args)
+        {
+                int n;
+                Application.Init ();
+
+                FileSystemWatcher m = new FileSystemWatcher ();
+                FileChooserDialog sel = new FileChooserDialog ("hi", null,
+FileChooserAction.Open);
+                sel.Show ();
+                Application.Run ();
+        }
+}
+
+It only happens when FileSystemWatcher is using the FAM backend. Looks like
+it crashes when FileChooserDialog tries to initialize FAM.


More information about the mono-bugs mailing list