Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Cabieces
otb
Commits
d6ea3add
Commit
d6ea3add
authored
8 years ago
by
Marina Bertolino
Browse files
Options
Downloads
Patches
Plain Diff
BUG: add empty test in GetGenericBandRange()
parent
973035b8
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
Modules/IO/ExtendedFilename/src/otbExtendedFilenameHelper.cxx
+13
-9
13 additions, 9 deletions
...les/IO/ExtendedFilename/src/otbExtendedFilenameHelper.cxx
with
13 additions
and
9 deletions
Modules/IO/ExtendedFilename/src/otbExtendedFilenameHelper.cxx
+
13
−
9
View file @
d6ea3add
...
...
@@ -199,18 +199,22 @@ ExtendedFilenameHelper
std
::
vector
<
ExtendedFilenameHelper
::
GenericBandRange
>
vBands
;
size_t
start
=
0
;
size_t
pos
;
while
(
start
!=
std
::
string
::
npos
)
if
(
!
bandRange
.
empty
()
)
{
pos
=
bandRange
.
find
(
','
,
start
);
if
(
pos
>
start
)
while
(
start
!=
std
::
string
::
npos
)
{
ExtendedFilenameHelper
::
GenericBandRange
range
;
size_t
size
=
(
pos
==
std
::
string
::
npos
?
pos
:
pos
-
start
);
bool
ret
=
range
.
SetString
(
bandRange
,
start
,
size
);
if
(
ret
)
vBands
.
push_back
(
range
);
pos
=
bandRange
.
find
(
','
,
start
);
if
(
pos
>
start
)
{
ExtendedFilenameHelper
::
GenericBandRange
range
;
size_t
size
=
(
pos
==
std
::
string
::
npos
?
pos
:
pos
-
start
);
bool
ret
=
range
.
SetString
(
bandRange
,
start
,
size
);
if
(
ret
)
vBands
.
push_back
(
range
);
}
if
(
pos
!=
std
::
string
::
npos
)
pos
++
;
start
=
pos
;
}
if
(
pos
!=
std
::
string
::
npos
)
pos
++
;
start
=
pos
;
}
return
vBands
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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