我剛剛更新到獅子,現在我的應用程序崩潰,在舊版本中工作正常。它在沒有日誌的memset函數上崩潰。得到崩潰om內存集更新到獅子和xCode
unsigned char *theValue;
add(theValue, someotherValues);
我已經過了theValue參考作用
add(unsigned char *inValue, some other perameter) {
memset(inValue,0,sizeOf(inValue)); // **here it is crashing**
}
什麼'theValue'點?而且,即使它指向某種合理的東西,代碼也沒有意義;你試圖設置指針'theValue'指向的字符,但是使用指針本身的大小來確定要設置多少內存。 –
我編輯過的問題。 – iOSPawan