strdup instead of malloc/strcpy
authorDiederick Niehorster <dcnieho@gmail.com>
Sun, 17 Mar 2013 09:09:41 +0000 (09:09 +0000)
committerDiederick Niehorster <dcnieho@gmail.com>
Sun, 17 Mar 2013 09:09:41 +0000 (09:09 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1561 7f0cb862-5218-0410-a997-914c9d46530a

src/mswin/fg_window_mswin.c

index 8342503..4365b8c 100644 (file)
@@ -923,8 +923,7 @@ void fgPlatformGlutSetWindowTitle( const char* title )
     /* Make copy of string to refer to later */
     if (fgStructure.CurrentWindow->State.pWState.WindowTitle)
         free(fgStructure.CurrentWindow->State.pWState.WindowTitle);
-    fgStructure.CurrentWindow->State.pWState.WindowTitle = malloc (strlen(title) + 1);
-    strcpy(fgStructure.CurrentWindow->State.pWState.WindowTitle, title);
+    fgStructure.CurrentWindow->State.pWState.WindowTitle = strdup(title);
 }
 
 /*
@@ -935,8 +934,7 @@ void fgPlatformGlutSetIconTitle( const char* title )
     /* Make copy of string to refer to later */
     if (fgStructure.CurrentWindow->State.pWState.IconTitle)
         free(fgStructure.CurrentWindow->State.pWState.IconTitle);
-    fgStructure.CurrentWindow->State.pWState.IconTitle = malloc (strlen(title) + 1);
-    strcpy(fgStructure.CurrentWindow->State.pWState.IconTitle, title);
+    fgStructure.CurrentWindow->State.pWState.IconTitle = strdup(title);
 }
 
 /*