Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue 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
Anders Lindh Olsson
e3-require
Commits
2abedd31
Commit
2abedd31
authored
9 years ago
by
Dirk Zimoch
Browse files
Options
Downloads
Patches
Plain Diff
remove last char in line only if it is '\n'
parent
ab8d5882
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runScript.c
+2
-2
2 additions, 2 deletions
runScript.c
with
2 additions
and
2 deletions
runScript.c
+
2
−
2
View file @
2abedd31
...
...
@@ -194,7 +194,7 @@ int runScript(const char* filename, const char* args)
if
((
line_raw
=
realloc
(
line_raw
,
line_raw_size
*=
2
))
==
NULL
)
goto
error
;
if
(
fgets
(
line_raw
+
len
,
line_raw_size
-
len
,
file
)
==
NULL
)
break
;
}
line_raw
[
--
len
]
=
0
;
/* get rid of '\n' */
if
(
line_raw
[
len
-
1
]
==
'\n'
)
line_raw
[
--
len
]
=
0
;
/* get rid of '\n' */
if
(
runScriptDebug
)
printf
(
"runScript raw line (%ld chars): '%s'
\n
"
,
len
,
line_raw
);
/* expand and check the buffer size (different epics versions write different may number of bytes)*/
...
...
@@ -221,7 +221,7 @@ int runScript(const char* filename, const char* args)
/* find local variable assignments */
{
unsigned
int
vlen
=
0
;
while
(
isalnum
(
p
[
vlen
])
||
p
[
vlen
]
==
'_'
)
vlen
++
;
while
(
isalnum
(
(
unsigned
char
)
p
[
vlen
])
||
p
[
vlen
]
==
'_'
)
vlen
++
;
if
(
p
[
vlen
]
==
'='
)
{
const
char
*
r
;
...
...
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