OSErr berr, err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
ITDebugLog(@"Error After AESizeOfParam: %i", err2);
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
- ITDebugLog(@"sending...");
if (!berr) [self printCarbonDesc:&sendEvent];
if (berr) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
- ITDebugLog(@"replying...");
if (!err) [self printCarbonDesc:&replyEvent];
if (err) {
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
ITDebugLog(@"Error After AESizeOfParam: %i", err2);
OSErr berr, err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
- ITDebugLog(@"_sendString: %s", sendString);
-
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result = malloc(resultSize);
-
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
+
if (err2) {
ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
sendString = [buildString UTF8String];
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[buildString substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[buildString substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
unichar *result = 0;
err2 = AESizeOfParam(&replyEvent, keyDirectObject, &resultType, &resultSize);
- result=malloc(resultSize);
-
+ if (resultSize != 0) {
+ result = malloc(resultSize);
+ } else {
+ return nil;
+ }
if (err2) {
ITDebugLog(@"Error After AESizeOfParam: %i", err2);
} else {
OSStatus cerr,cerr2,err;
//AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, kAnyTransactionID, &event, nil, "");
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return;
}
cerr = AECreateDesc(typeProcessSerialNumber,(ProcessSerialNumber*)&psn,sizeof(ProcessSerialNumber),&dest);
- (void)printCarbonDesc:(AEDesc*)desc {
Handle xx;
AEPrintDescToHandle(desc,&xx);
- ITDebugLog(@"Handle: %s", *xx);
+ ITDebugLog(@"AE Descriptor: %s", *xx);
DisposeHandle(xx);
}
AEBuildError buildError;
OSStatus err;
- ITDebugLog(@"_sendString: %s", sendString);
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
err = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[nssendString substringToIndex:buildError.fErrorPos]);
}
SInt32 count, resultCount;
AECountItems(&replyEvent,&count);
- result=malloc(sizeof(AEDesc)*count);
+ if ((sizeof(AEDesc)*count) != 0) {
+ result=malloc(sizeof(AEDesc)*count);
+ } else {
+ return nil;
+ }
AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
free(result);
OSErr err2, err3;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
OSStatus berr, err;
if ((GetProcessPID(&psn, &pid) == noErr) && (pid == 0)) {
- ITDebugLog(@"Error getting PID of application! Exiting.");
+ ITDebugLog(@"Error getting PID of application.");
return nil;
}
-
- ITDebugLog(@"_sendString: %s", sendString);
berr = AEBuildAppleEvent(eClass, eID, typeProcessSerialNumber,(ProcessSerialNumber*)&psn, sizeof(ProcessSerialNumber), kAutoGenerateReturnID, 0, &sendEvent, &buildError, sendString);
[self printCarbonDesc:&sendEvent];
- if (err) {
- ITDebugLog(@"%d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
+ if (berr) {
+ ITDebugLog(@"Error: %d:%d at \"%@\"",(int)buildError.fError,buildError.fErrorPos,[string substringToIndex:buildError.fErrorPos]);
}
err = AESend(&sendEvent, &replyEvent, kAEWaitReply, kAENormalPriority, kNoTimeOut, idleUPP, NULL);
if (err) {
ITDebugLog(@"Send Error: %i",err);
} else {
- SInt32 count, resultCount;
-
- AECountItems(&replyEvent,&count);
- result=malloc(sizeof(AEDesc)*count);
- AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
-
+ SInt32 count, resultCount;
+
+ AECountItems(&replyEvent,&count);
+ if ((sizeof(AEDesc)*count) != 0) {
+ result=malloc(sizeof(AEDesc)*count);
+ } else {
+ return nil;
+ }
+ AEGetArray(&replyEvent, kAEDescArray, result, sizeof(AEDesc)*count, NULL, NULL, &resultCount);
+
free(result);
}