Re: NSURL Bug?
Re: NSURL Bug?
- Subject: Re: NSURL Bug?
- From: Scott Anguish <email@hidden>
- Date: Wed, 26 Jun 2002 17:37:32 -0400
I don't think init is an acceptable initializer for NSURL...
On Wednesday, June 26, 2002, at 03:15 PM, Evan DiBiase wrote:
Hello,
I ran into the following "issue" with using NSURL in a seemingly
standard way: the code
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// insert code here...
NSURL *myURL = [[NSURL alloc] init];
[myURL release];
[pool release];
return 0;
}
will crash with a signal 10 (SIGBUS). I don't see any reason why this
would happen, but I wanted to get a confirmation that there is a bug
here and not just my relative inexperience with the platform.
Thanks,
Evan
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
References: | |
| >NSURL Bug? (From: Evan DiBiase <email@hidden>) |