X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=d2c5312ff67306881ecdd6a08d71a0fae7862c87;hb=04bf0e1fed86a5dc9032f2fc8d89ed6217b566e1;hp=021200bc9749125437631b9b07fd6ee095c86825;hpb=97d4f38945476834fd7fce612b663f19f2b291f8;p=pspp diff --git a/src/output/html.c b/src/output/html.c index 021200bc97..d2c5312ff6 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -32,7 +31,6 @@ #include #include "error.h" #include "getline.h" -#include "getlogin_r.h" #include "output.h" #include "manager.h" #include "table.h" @@ -87,10 +85,12 @@ html_open_driver (struct outp_driver *this, struct substring options) fputs (" LINK=\"#1f00ff\" ALINK=\"#ff0000\" VLINK=\"#9900dd\">\n", x->file); print_title_tag (x->file, "H1", outp_title); print_title_tag (x->file, "H2", outp_subtitle); + free (x->chart_file_name); return true; error: + free (x->chart_file_name); this->class->close_driver (this); return false; } @@ -147,7 +147,7 @@ enum }; /* All the options that the HTML driver supports. */ -static struct outp_option option_tab[] = +static const struct outp_option option_tab[] = { {"output-file", string_arg, 0}, {"chart-files", string_arg, 1}, @@ -359,7 +359,7 @@ output_tab_table (struct outp_driver *this, struct tab_table *t) } static void -html_initialise_chart (struct outp_driver *this, struct chart *ch) +html_initialise_chart (struct outp_driver *this UNUSED, struct chart *ch) { #ifdef NO_CHARTS ch->lp = NULL; @@ -374,7 +374,7 @@ html_initialise_chart (struct outp_driver *this, struct chart *ch) number_pos = strchr (x->chart_file_name, '#') - x->chart_file_name; ch->file_name = xasprintf ("%.*s%d%s", number_pos, x->chart_file_name, - x->chart_cnt, + (int) x->chart_cnt, x->chart_file_name + number_pos + 1); fp = fopen (ch->file_name, "wb"); if (fp == NULL) @@ -399,7 +399,7 @@ html_finalise_chart(struct outp_driver *d UNUSED, struct chart *ch) /* HTML driver class. */ -struct outp_class html_class = +const struct outp_class html_class = { "html", 1,