• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Getting Computer Name
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Getting Computer Name


  • Subject: Re: Getting Computer Name
  • From: "Paul Sanders" <email@hidden>
  • Date: Sun, 20 Jun 2010 12:30:07 +0100

It looks like SCDynamicStoreCopyComputerName is not prototyped correctly so the compiler assumes it returns an int.  In what I assume is a 64-bit build this will lose the top 32 bits of the CFStringRef.

Are you #including <CoreServices/CoreServices.h>?  Other than that I am compiling 32 bit so I don't know what else might be wrong with the setup of your project but at least now you have an idea of what to look for.

Regards,

----------------------------------------------------------------------
Paul Sanders
AlpineSoft
http://www.alpinesoft.co.uk

----- Original Message -----
From: Steve Steinitz
To: Paul Sanders ; email@hidden
Sent: Sunday, June 20, 2010 11:52 AM
Subject: Re: Getting Computer Name


Here is my method:

+ (NSString *)
computerName
{
     CFStringRef   temp = SCDynamicStoreCopyComputerName (NULL, NULL);
     NSString    * name = [NSString stringWithString: temp];
     NSLog (@"computer name = %@", name);
     CFRelease (temp);
     return name;
}

The line creating temp warns: initialization makes pointer from integer.

The line creating name warns: passing argument 1 of
StringwithString from incompatible pointer type
and fails with signal EXC_BAD_ACCESS

Thanks again,

Steve
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Getting Computer Name
      • From: Steve Steinitz <email@hidden>
References: 
 >Re: Getting Computer Name (From: Steve Steinitz <email@hidden>)

  • Prev by Date: Re: Getting Computer Name
  • Next by Date: Re: Getting Computer Name
  • Previous by thread: Re: Getting Computer Name
  • Next by thread: Re: Getting Computer Name
  • Index(es):
    • Date
    • Thread