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 am getting the following warning in TinyOS 2.1.2 (though it looks like it is present in master).
tinyos/tos/lib/tossim/SimSchedulerBasicP.nc: In function ‘SimSchedulerBasicP$sim_scheduler_event_handle’:
tinyos/tos/system/AMQueueImplP.nc:135:76: warning: array subscript is above array bounds [-Warray-bounds]
queue has the size numClients and on line 135 there is the potential for queue to be accessed by the index "(i/8)*8 + j" where i can at most be (numClients/8) and j is between 0 and 7 inclusive.
The text was updated successfully, but these errors were encountered:
I am getting the following warning in TinyOS 2.1.2 (though it looks like it is present in master).
tinyos/tos/lib/tossim/SimSchedulerBasicP.nc: In function ‘SimSchedulerBasicP$sim_scheduler_event_handle’:
tinyos/tos/system/AMQueueImplP.nc:135:76: warning: array subscript is above array bounds [-Warray-bounds]
queue has the size numClients and on line 135 there is the potential for queue to be accessed by the index "(i/8)*8 + j" where i can at most be (numClients/8) and j is between 0 and 7 inclusive.
The text was updated successfully, but these errors were encountered: