Skip to content

Commit

Permalink
fix ArgumentNullException (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Joker authored Sep 25, 2024
1 parent ec523c4 commit 655df9a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Starward/Services/Download/InstallGameService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -625,8 +625,8 @@ public void ClearState()



protected List<Task> _taskItems;
public List<Task> TaskItems => _taskItems;
protected Task[] _taskItems;
public Task[] TaskItems => _taskItems;



Expand Down Expand Up @@ -726,14 +726,14 @@ protected void StartTask(InstallGameState state)
async Task RunTasksAsync()
{
_cancellationTokenSource = new CancellationTokenSource();
var tasks = new Task[Environment.ProcessorCount];
_taskItems = new Task[Environment.ProcessorCount];
for (int i = 0; i < Environment.ProcessorCount; i++)
{
tasks[i] = ExecuteTaskItemAsync(_cancellationTokenSource.Token);
_taskItems[i] = ExecuteTaskItemAsync(_cancellationTokenSource.Token);
}
try
{
await Task.WhenAll(tasks).ConfigureAwait(false);
await Task.WhenAll(_taskItems).ConfigureAwait(false);
}
finally
{
Expand Down

0 comments on commit 655df9a

Please sign in to comment.