Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nccf
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
702
Provoz
nccf
Commits
c432928b
Commit
c432928b
authored
15 years ago
by
Yorhel
Browse files
Options
Downloads
Patches
Plain Diff
Fixed subdirectory name after refresh and a tiny memory leak
parent
2738177f
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/calc.c
+19
-5
19 additions, 5 deletions
src/calc.c
with
19 additions
and
5 deletions
src/calc.c
+
19
−
5
View file @
c432928b
...
...
@@ -297,27 +297,32 @@ int calc_key(int ch) {
void
calc_process
()
{
char
*
tmp
;
char
*
path
,
*
name
;
struct
stat
fs
;
struct
dir
*
t
;
/* check root directory */
if
((
tmp
=
path_real
(
curpath
))
==
NULL
)
{
if
((
path
=
path_real
(
curpath
))
==
NULL
)
{
failed
=
1
;
strcpy
(
errmsg
,
"Directory not found"
);
goto
calc_fail
;
}
/* split into path and last component */
name
=
strrchr
(
path
,
'/'
);
*
(
name
++
)
=
0
;
/* we need to chdir so we can provide relative paths for lstat() and opendir(),
* this to prevent creating path names longer than PATH_MAX */
if
(
path_chdir
(
tmp
)
<
0
||
chdir
(
".."
)
<
0
)
{
if
(
path_chdir
(
path
)
<
0
)
{
failed
=
1
;
strcpy
(
errmsg
,
"Couldn't chdir into directory"
);
free
(
path
);
goto
calc_fail
;
}
/* would be strange for this to fail, but oh well... */
if
(
lstat
(
tmp
,
&
fs
)
!=
0
||
!
S_ISDIR
(
fs
.
st_mode
))
{
if
(
lstat
(
name
,
&
fs
)
!=
0
||
!
S_ISDIR
(
fs
.
st_mode
))
{
failed
=
1
;
strcpy
(
errmsg
,
"Couldn't stat directory"
);
free
(
path
);
goto
calc_fail
;
}
...
...
@@ -326,9 +331,18 @@ void calc_process() {
t
->
size
=
fs
.
st_blocks
*
S_BLKSIZE
;
t
->
asize
=
fs
.
st_size
;
t
->
flags
|=
FF_DIR
;
t
->
name
=
tmp
;
if
(
orig
)
{
t
->
name
=
malloc
(
strlen
(
orig
->
name
)
+
1
);
strcpy
(
t
->
name
,
orig
->
name
);
}
else
{
t
->
name
=
malloc
(
strlen
(
path
)
+
strlen
(
name
)
+
1
);
strcpy
(
t
->
name
,
path
);
strcat
(
t
->
name
,
"/"
);
strcat
(
t
->
name
,
name
);
}
root
=
t
;
curdev
=
fs
.
st_dev
;
free
(
path
);
/* start calculating */
if
(
!
calc_dir
(
root
)
&&
!
failed
)
{
...
...
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