The Dink Network

Reply to Re: RTDink 1.93 for Windows 7

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
April 27th 2022, 08:08 PM
seth.gif
Seth
Peasant He/Him Japan
 
Cool, yeah I'll github everything up soon. The bug was in strip_beginning_spaces, if the dest and src in a strcpy overlapped, certain implementations explode apparently.

The fix I did was just force it to use my own version there:

char *strcpy_safe(char *dest, const char* src)
{
char *ret = dest;
while (*dest++ = *src++)
;
return ret;
}

Ok, as for dink, I've released 1.95 for Windows:

Dink Smallwood HD 1.95

People running the older version will get notified at startup.

Big thanks for the help!