Description: Fix buffer overflow on 32 bit architectures
 Use strcpy in midi2abc.c instead of strccpy. This reverts a previous change
 to fix a Windows specific bug.
Author: James Cowgill <jcowgill@debian.org>
Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890023
Forwarded: Seymour copied into bug report
Last-Update: 2018-03-03
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- abcmidi.orig/midi2abc.c
+++ abcmidi/midi2abc.c
@@ -354,7 +354,7 @@
   char* p;
 
   p = (char*) checkmalloc(strlen(s)+1);
-  strncpy(p, s,strlen(s)+2); /* [SS] 2017-08-30 */
+  strcpy(p, s);
   return(p);
 }
 
