]> git.sesse.net Git - stockfish/commitdiff
Prefer strncpy() to strcpy()
authorMarco Costalba <mcostalba@gmail.com>
Thu, 18 Sep 2008 08:49:54 +0000 (09:49 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 18 Sep 2008 10:25:55 +0000 (12:25 +0200)
This removes a warning under MSVC++

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/search.cpp

index 71da3ec18a985f04b340b544959c396846184f6d..e4675df56ea35b75b39a14c9672e901310d3f6e5 100644 (file)
@@ -2135,7 +2135,7 @@ namespace {
     if(data) {
       char input[256];
       if(fgets(input, 255, stdin) == NULL)
     if(data) {
       char input[256];
       if(fgets(input, 255, stdin) == NULL)
-        strcpy(input, "quit\n");
+        strncpy(input, "quit\n", 5);
       if(strncmp(input, "quit", 4) == 0) {
         AbortSearch = true;
         PonderSearch = false;
       if(strncmp(input, "quit", 4) == 0) {
         AbortSearch = true;
         PonderSearch = false;