fix for last check, bad intl text code
authorGood Guy <good1.2guy@gmail.com>
Wed, 13 Apr 2016 21:25:08 +0000 (15:25 -0600)
committerGood Guy <good1.2guy@gmail.com>
Wed, 13 Apr 2016 21:25:08 +0000 (15:25 -0600)
cinelerra-5.1/cinelerra/swindow.C

index e56fa54a92a41f6b76e2b9a7da6020c71ae5de2d..e88a9e1cb8c88f8165467d906586e376f55dc0aa 100644 (file)
@@ -198,7 +198,7 @@ void SWindowGUI::create_objects()
 
 void SWindowGUI::load()
 {
-       static const char script_text[] =
+       const char *script_text =
        _("Adding Subtitles: quick \"How To\" (= or * indicates comment)\n"
        "*2345678901234567890123456789012345678901234567890123456789\n"
        "For regular DVD subtitles, put script in a text file. "
@@ -222,7 +222,7 @@ void SWindowGUI::load()
        else {
                script_path[0] = 0;
                load_path->update(script_path);
-               FILE *fp = fmemopen((void *)script_text, sizeof(script_text), "r");
+               FILE *fp = fmemopen((void *)script_text, strlen(script_text), "r");
                load_script(fp);
        }
        int text_no = script_text_no;