avoid overflow of update counter on task interfaces
This commit is contained in:
parent
14dcc75271
commit
09eb59510d
|
@ -130,6 +130,9 @@ class TaskInterfacesStorage{
|
||||||
auto vit=values.find(name);
|
auto vit=values.find(name);
|
||||||
if (vit != values.end()){
|
if (vit != values.end()){
|
||||||
vit->second.updates++;
|
vit->second.updates++;
|
||||||
|
if (vit->second.updates < 0){
|
||||||
|
vit->second.updates=0;
|
||||||
|
}
|
||||||
vit->second.ptr=v;
|
vit->second.ptr=v;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
|
Loading…
Reference in New Issue