jendave / cocoa-sharp-dev

Automatically exported from code.google.com/p/cocoa-sharp-dev
1 stars 0 forks source link

Clicking the ColorWell on a running app throws a segmentation fault. #1

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Has anyone observed that when the User clicks on a ColorWell control that 
it crashes your entire app.

In order to duplicate this behavior, this is all I do.

1. Open up the Main.nib
2. Add a ColorWell control to the form 
3. Save the Main.nib
4. Compile and run
5. Click the ColorWell...
6. Applicaiton pukes....see below...

What is the expected output? What do you see instead?

The expected output is no segmentation fault and that the ColorPanel is 
presented to the user. Instead, we currently get the following:
=================================================================
Got a SIGSEGV while executing native code. This usually indicates 
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================

Stacktrace:

  at (wrapper managed-to-native) 
System.IntPtr_System.IntPtr_System.IntPtr.objc_msgSend (intptr,intptr) 
<0x00004>
  at (wrapper managed-to-native) 
System.IntPtr_System.IntPtr_System.IntPtr.objc_msgSend (intptr,intptr) 
<0xffffffff>
  at (wrapper runtime-invoke) 
System.Object.runtime_invoke_intptr_intptr_intptr 
(object,intptr,intptr,intptr) <0xffffffff>
  at (wrapper managed-to-native) 
System.Reflection.MonoMethod.InternalInvoke (object,object[]) <0x00004>
  at (wrapper managed-to-native) 
System.Reflection.MonoMethod.InternalInvoke (object,object[]) <0xffffffff>
  at System.Reflection.MonoMethod.Invoke 
(object,System.Reflection.BindingFlags,System.Reflection.Binder,object
[],System.Globalization.CultureInfo ) <0x000ab>
  at System.MonoType.InvokeMember 
(string,System.Reflection.BindingFlags,System.Reflection.Binder,object,obje
ct[],System.Reflection.ParameterModifier
[],System.Globalization.CultureInfo,string[]) <0x0045c> 
  at System.Type.InvokeMember 
(string,System.Reflection.BindingFlags,System.Reflection.Binder,object,obje
ct[]) <0x00029>
  at Cocoa.ObjCMessaging.objc_msgSend (intptr,string,System.Type) <0x002b1>
  at Cocoa.ObjCClass.TypeForIntPtr (intptr) <0x00070>
  at Cocoa.Object.FromIntPtr (intptr) <0x000ca>
  at Cocoa.ObjCInterop.Dispatch (intptr,intptr,object[]) <0x0003d>
  at d83ee51a-fef8-4432-b5a6-23f8d4ec982a.Dispatch (intptr,intptr) 
<0x00033>
  at (wrapper native-to-managed) d83ee51a-fef8-4432-b5a6-
23f8d4ec982a.Dispatch (intptr,intptr) <0xffffffff>
  at (wrapper managed-to-native) 
System.Void_System.IntPtr_System.IntPtr.objc_msgSend (intptr,intptr) 
<0x00004>
  at (wrapper managed-to-native) 
System.Void_System.IntPtr_System.IntPtr.objc_msgSend (intptr,intptr) 
<0xffffffff>
  at (wrapper runtime-invoke) 
System.Object.runtime_invoke_void_intptr_intptr 
(object,intptr,intptr,intptr) <0xffffffff>
  at (wrapper managed-to-native) 
System.Reflection.MonoMethod.InternalInvoke (object,object[]) <0x00004>
  at (wrapper managed-to-native) 
System.Reflection.MonoMethod.InternalInvoke (object,object[]) <0xffffffff>
  at System.Reflection.MonoMethod.Invoke 
(object,System.Reflection.BindingFlags,System.Reflection.Binder,object
[],System.Globalization.CultureInfo) <0x000ab>
  at System.MonoType.InvokeMember 
(string,System.Reflection.BindingFlags,System.Reflection.Binder,object,obje
ct[],System.Reflection.ParameterModifier
[],System.Globalization.CultureInfo,string[]) <0x0045c>
  at System.Type.InvokeMember 
(string,System.Reflection.BindingFlags ,System.Reflection.Binder,object,obj
ect[]) <0x00029>
  at Cocoa.ObjCMessaging.objc_msgSend (intptr,string,System.Type) <0x002b1>
  at Cocoa.Application.RunApplication () <0x00025>
  at Cocoa.Application.Run () <0x0001b>
  at StretchViewTutorial.StretchViewTutorial.Run () <0x0001f>
  at StretchViewTutorial.StretchViewTutorial.Main (string[]) <0x00033>
  at (wrapper runtime-invoke) System.Object.runtime_invoke_void_string [] 
(object,intptr,intptr,intptr) <0xffffffff>

StretchViewTutorial has exited due to signal 6 (SIGABRT).

Please use labels and text to provide additional information.

Original issue reported on code.google.com by schav...@gmail.com on 12 Mar 2007 at 5:47

GoogleCodeExporter commented 9 years ago
might this be related to http://bugzilla.ximian.com/show_bug.cgi?id=82754 ?

Original comment by elite...@gmail.com on 9 Sep 2007 at 2:08