What is the NS_ERROR_INVALID_POINTER error in Firefox?

后端 未结 3 1467
别跟我提以往
别跟我提以往 2021-01-22 07:47

While testing JavaScript code in Firefox 3.5 I sometimes get the following error:

Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER)
<         


        
3条回答
  •  灰色年华
    2021-01-22 08:38

    Without knowing specifically what you are calling, the error generally means you've passed something null to something that does not expect a null value.

提交回复
热议问题