bunch-o compiler bitch'n
[goodguy/history.git] / cinelerra-5.1 / plugins / svg / svgwin.C
index 702d67b4f5258b09524f476219c9338fb02a9b17..9931a8ddc218c5fa3f86f05b3a6d0401ce9c1b04 100644 (file)
@@ -2,21 +2,21 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
+ *
  */
 
 #include "svgwin.h"
@@ -228,7 +228,7 @@ void NewSvgButton::run()
                        }
                }
        } while(result);        // file doesn't exist so repeat
-       
+
        strcpy(client->config.svg_file, filename);
        struct stat st;
        client->config.ms_time = stat(filename, &st) ? 0 :
@@ -271,7 +271,7 @@ void EditSvgButton::stop()
 
 int EditSvgButton::handle_event()
 {
-       
+
        window->editing_lock.lock();
        if( !window->editing && client->config.svg_file[0] != 0 ) {
                window->editing = 1;
@@ -294,7 +294,7 @@ void EditSvgButton::run()
        strcat(filename_png, ".png");
        remove(filename_png);
        strcpy(filename_fifo, filename_png);
-       strcat(filename_fifo, ".fifo"); 
+       strcat(filename_fifo, ".fifo");
        remove(filename_fifo);
        if( !mkfifo(filename_fifo, S_IRWXU) &&
            (fh_fifo = ::open(filename_fifo, O_RDWR+O_NONBLOCK)) >= 0 ) {
@@ -358,7 +358,8 @@ void SvgInkscapeThread::run()
 {
 // Runs the inkscape
        char command[1024];
-       sprintf(command, "inkscape --with-gui %s", edit->client->config.svg_file);
+       snprintf(command, sizeof(command),
+               "inkscape --with-gui %s", edit->client->config.svg_file);
        printf(_("Running external SVG editor: %s\n"), command);
 
        enable_cancel();