Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
a2d1ed20
Commit
a2d1ed20
authored
17 years ago
by
rds
Browse files
Options
Downloads
Patches
Plain Diff
Fix RT ticket #54109
parent
8eabd1d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/zmapUtils/zmapGUIutils.c
+11
-2
11 additions, 2 deletions
src/zmapUtils/zmapGUIutils.c
with
11 additions
and
2 deletions
src/zmapUtils/zmapGUIutils.c
+
11
−
2
View file @
a2d1ed20
...
...
@@ -25,9 +25,9 @@
* Description:
* Exported functions: See ZMap/zmapUtilsGUI.h
* HISTORY:
* Last edited:
Oct 30 08:42
200
7
(
edgrif
)
* Last edited:
Jan 9 14:11
200
8
(
rds
)
* Created: Thu Jul 24 14:37:35 2003 (edgrif)
* CVS info: $Id: zmapGUIutils.c,v 1.4
2
200
7-1
1-0
1
1
5:08:03 edgrif
Exp $
* CVS info: $Id: zmapGUIutils.c,v 1.4
3
200
8-0
1-0
9
1
4:11:35 rds
Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -1251,6 +1251,15 @@ static void store_filename(GtkWidget *widget, gpointer user_data)
if
(
cb_data
->
suffix
)
has_suffix
=
g_str_has_suffix
(
file_path
,
cb_data
->
suffix
)
;
else
{
/* This seems bizarre, but if cb_data->suffix == NULL and
* has_suffix is initialised as FALSE, the file_path_out
* ends up with being set to /path/name.(null)
* Fixes RT ticket # 54109
*/
has_suffix
=
TRUE
;
}
cb_data
->
file_path_out
=
g_strdup_printf
(
"%s%s%s"
,
file_path
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment