Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent later accesses to unallocated memory (#907)
A pointer to dtype is stored in the dict forever. dtype is stack-allocated while the dict created is global. The dict (and the pointer to dtype in it) will live past the lifetime of dtype. clusterManagerLinkDictType is a global object that has the same values as dtype. Signed-off-by: Salvatore Mesoraca <[email protected]>
- Loading branch information