mirror of https://github.com/ARMmbed/mbed-os.git
Fix use_count() in SharedPtr
parent
7086d69a83
commit
298f847821
|
@ -175,8 +175,9 @@ public:
|
||||||
{
|
{
|
||||||
if (_ptr != NULL) {
|
if (_ptr != NULL) {
|
||||||
core_util_critical_section_enter();
|
core_util_critical_section_enter();
|
||||||
return *_counter;
|
uint32_t current_counter = *_counter;
|
||||||
core_util_critical_section_exit();
|
core_util_critical_section_exit();
|
||||||
|
return current_counter;
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue