Background: I have a webapp that uses uploadprogress and it just caused a segmentation fault. Investigating about the problem I found a bug report that points the problem down to a line in the code https://bugs.php.net/bug.php?id=79584
In this code I also saw, that they use strcpy. The function is used there for many years already so I guess it has been checked against security rules, but I am not a C programmer and my knowledge is very limited. I also found mentions that it sometimes can be legitimate to still use strcpy without causing any security issues.
Now I wonder if that's the case in this special package. Is it safe that the code contains this function or not?