Properly set our export file name before we try to use it. Fixes bug 894.

svn path=/trunk/; revision=18012
This commit is contained in:
Gerald Combs 2006-04-26 21:15:51 +00:00
parent 301a5f1e32
commit 056b3d977a
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,6 @@ win32_export_file(HWND h_wnd, export_type_e export_type) {
print_args.format = PR_FMT_TEXT;
print_args.to_file = TRUE;
print_args.file = utf_16to8(file_name);
print_args.cmd = NULL;
print_args.print_summary = TRUE;
print_args.print_dissections = print_dissections_as_displayed;
@ -437,6 +436,7 @@ win32_export_file(HWND h_wnd, export_type_e export_type) {
print_args.print_formfeed = FALSE;
if (GetSaveFileName(&ofn)) {
print_args.file = utf_16to8(file_name);
switch (ofn.nFilterIndex) {
case export_type_text: /* Text */
print_args.stream = print_stream_text_new(TRUE, print_args.file);