Skip to content

Commit

Permalink
Merge pull request #146 from mknos/strscan_memcopy
Browse files Browse the repository at this point in the history
StrScan(): Copy into new buffer with MemCopy() instead of loop
  • Loading branch information
GutPuncher committed Mar 11, 2024
2 parents d77e526 + 8f9d48b commit cd46dc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Kernel/KGlobals.ZC
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ U8 *rev_bits_table; //Table with U8 bits reversed
CDate local_time_offset;
F64 *pow10_I64,
sys_os_version = 2.03;
U64 sys_os_version_sub = 116;
U64 sys_os_version_sub = 117;
U8 *sys_os_version_str;
U8 *sys_os_version_full;
U8 *sys_os_version_nice;
Expand Down
8 changes: 4 additions & 4 deletions src/Kernel/StrScan.ZC
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ and take address.
*/
U8 *buf, *ptr, **pptr;
Bool left_justify = FALSE;
I64 ch, cur_arg = 0, i, len, *i_ptr, dec_len;
I64 ch, cur_arg = 0, len, *i_ptr, dec_len;
F64 *d_ptr;

if (!format)
Expand Down Expand Up @@ -301,9 +301,9 @@ and take address.
}
}
buf = MAlloc(len + 1);
for (i = 0; i < len; i++)
buf[i] = *src++;
buf[i] = 0;
MemCopy(buf, src, len);
buf[len] = 0;
src += len;
switch (ch)
{
case 's':
Expand Down

0 comments on commit cd46dc4

Please sign in to comment.