[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tools-windows-msvc runtime error
From: |
H. Nikolaus Schaller |
Subject: |
Re: tools-windows-msvc runtime error |
Date: |
Sat, 15 Jul 2023 17:39:15 +0200 |
Just a note
> Am 15.07.2023 um 17:27 schrieb M A <teammember0x01@gmail.com>:
>
> NSString *mystring; // nil pointer
this is not a nil pointer but an uninitialized variable.
Try: NSString *mystring = nil; // nil pointer
Nevertheless it could be the reason why "loserist" sees his exception, although
it looks more like
int *pointer = NULL;
int y = *pointer;
But it happens inside the objc_msgSend() library function.
This more looks like a corrupt object class record.
E.g. corrupted selector name table sothat movl (%r10) fails.
2 cts, HNS
- tools-windows-msvc runtime error, loserist, 2023/07/15
- Fw: Re: Re: tools-windows-msvc runtime error, loserist, 2023/07/16
- Re: tools-windows-msvc runtime error, Frederik Seiffert, 2023/07/17
- Re: tools-windows-msvc runtime error, Frederik Seiffert, 2023/07/18
- Re: tools-windows-msvc runtime error, David Chisnall, 2023/07/18
- Re: Re: tools-windows-msvc runtime error, loserist, 2023/07/18
- Re: Re: tools-windows-msvc runtime error, loserist, 2023/07/18