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
The global variable emptyAddress in the call-session.cpp, it is referencing to another global variable addressesCache that defined in the address.cpp. However, in CPP, the initialization order for global variable is not stable. That means the emptyAddress may be initialized before the addressesCache.
The text was updated successfully, but these errors were encountered:
ElementOxygenWady
changed the title
[Bug]: Initialize empy address may be reference unconferenced object
[Bug]: Initializing empty address may refer to an unconstructed object
Sep 12, 2022
The global variable emptyAddress in the call-session.cpp, it is referencing to another global variable addressesCache that defined in the address.cpp. However, in CPP, the initialization order for global variable is not stable. That means the emptyAddress may be initialized before the addressesCache.
The text was updated successfully, but these errors were encountered: