>>
>> NSURL * url = [NSURL fileURLWithPath: [self absolutePathFor: filename_]
>> isDirectory: NO];
>> if ( url == NULL )
>> {
>> ... // never happened so far
>> }
>> CGImageSourceRef sourceRef = CGImageSourceCreateWithURL( (CFURLRef) url,
>> NULL );
>> if ( sourceRef == NULL )
On Feb 17, 2020, at 04:17:26, Gabriel Zachmann via Cocoa-dev
wrote:
>
> One of my users (maybe, they others don't bother)
> told me that occasionally, they get an error message that must originate from
> this piece of code in my screensaver:
>
>NSURL * url = [NSURL fileURLWithPath: [self a
One of my users (maybe, they others don't bother)
told me that occasionally, they get an error message that must originate from
this piece of code in my screensaver:
NSURL * url = [NSURL fileURLWithPath: [self absolutePathFor: filename_]
isDirectory: NO];
if ( url == NULL )
{