You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not 100% sure of this, but I think that if you call Clear, FDocument becomes nil, and in a few other places FDocument is used without checking if it is nil.
Therefore, because FDocument can be nil, you should always check FDocument <> nil before using it, or before trying to destroy it.
I had these crashes until I changed the code to always check FDocument<>nil before using it, and the crashes stopped.
The text was updated successfully, but these errors were encountered:
I'm not 100% sure of this, but I think that if you call Clear, FDocument becomes nil, and in a few other places FDocument is used without checking if it is nil.
Therefore, because FDocument can be nil, you should always check FDocument <> nil before using it, or before trying to destroy it.
I had these crashes until I changed the code to always check FDocument<>nil before using it, and the crashes stopped.
The text was updated successfully, but these errors were encountered: