ObjFW  Diff

Differences From Artifact [19f41737ee]:

To Artifact [77f18c4a57]:


44
45
46
47
48
49
50

51
52
53




54
55
56
57
58
59
60

-   initWithClass: (Class)class_
       sourcePath: (OFString*)src
  destinationPath: (OFString*)dest
{
	self = [super initWithClass: class_];


	sourcePath = [src copy];
	destinationPath = [dest copy];
	errNo = GET_ERRNO;





	return self;
}

- (void)dealloc
{
	[sourcePath release];







>
|
|
|
>
>
>
>







44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65

-   initWithClass: (Class)class_
       sourcePath: (OFString*)src
  destinationPath: (OFString*)dest
{
	self = [super initWithClass: class_];

	@try {
		sourcePath = [src copy];
		destinationPath = [dest copy];
		errNo = GET_ERRNO;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}

- (void)dealloc
{
	[sourcePath release];