You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-chemistry/platon/files/20110126-buffer-overflow.patch

15 lines
345 B

--- xdrvr.c 2010-06-27 15:21:49.026967128 +0200
+++ xdrvr_new.c 2010-06-27 15:22:57.132069867 +0200
@@ -864,11 +864,9 @@
int zdate_(string)
char *string;
{
- static char tmp[25];
time_t now;
now = time(NULL);
- strcpy(tmp,ctime(&now));
- strncpy(string,tmp,25);
+ strncpy(string,ctime(&now),25);
return(1);
}
int slaap_(int *i)