this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #2066 from jezze/minor-fixes

Minor fixes

authored by

Vadim Grigoruk and committed by
GitHub
ac65f75b c26048e4

+2 -2
+1 -1
src/core/core.c
··· 499 499 if (core->data) 500 500 { 501 501 core->pause.time.start = core->data->start; 502 - core->pause.time.paused = core->data->counter(core->data->data);; 502 + core->pause.time.paused = core->data->counter(core->data->data); 503 503 } 504 504 } 505 505
+1 -1
src/studio/fs.c
··· 398 398 if(*ent->d_name != _S('.')) 399 399 { 400 400 tic_strncpy(fullPath, pathString, COUNT_OF(fullPath)); 401 - tic_strncat(fullPath, ent->d_name, COUNT_OF(fullPath)); 401 + tic_strncat(fullPath, ent->d_name, COUNT_OF(fullPath) - 1); 402 402 403 403 if(tic_stat(fullPath, &s) == 0) 404 404 {