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
In SDLLogTargetFile, if there aren't enough files to cleanup, we could run an unsigned integer below zero, causing it to attempt to cleanup too many log files.
Specifically L114 should use an NSInteger so that the for loop doesn't run if there are fewer sortedLogFilePaths than the maxFiles.
OS & Version Information
iOS Version: n/a
SDL iOS Version: 5.0+
Testing Against: n/a
The text was updated successfully, but these errors were encountered:
Bug Report
In
SDLLogTargetFile
, if there aren't enough files to cleanup, we could run an unsigned integer below zero, causing it to attempt to cleanup too many log files.Specifically L114 should use an NSInteger so that the for loop doesn't run if there are fewer
sortedLogFilePaths
than themaxFiles
.OS & Version Information
The text was updated successfully, but these errors were encountered: