Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
darshan
darshan
Commits
82b0a595
Commit
82b0a595
authored
Sep 21, 2015
by
Shane Snyder
Browse files
bug fix in obfuscating darshan file record names
parent
dbefada8
Changes
1
Hide whitespace changes
Inline
Side-by-side
darshan-util/darshan-convert.c
View file @
82b0a595
...
...
@@ -144,16 +144,17 @@ void obfuscate_filenames(int key, struct darshan_record_ref *rec_hash)
{
struct
darshan_record_ref
*
ref
,
*
tmp
;
uint32_t
hashed
;
char
tmp_string
[
32
]
;
char
tmp_string
[
128
]
=
{
0
}
;
HASH_ITER
(
hlink
,
rec_hash
,
ref
,
tmp
)
{
hashed
=
darshan_hashlittle
(
ref
->
rec
.
name
,
strlen
(
ref
->
rec
.
name
),
key
);
sprintf
(
tmp_string
,
"%u"
,
hashed
);
free
(
ref
->
rec
.
name
);
ref
->
rec
.
name
=
malloc
(
strlen
(
tmp_string
));
ref
->
rec
.
name
=
malloc
(
strlen
(
tmp_string
)
+
1
);
assert
(
ref
->
rec
.
name
);
memcpy
(
ref
->
rec
.
name
,
tmp_string
,
strlen
(
tmp_string
));
ref
->
rec
.
name
[
strlen
(
tmp_string
)]
=
'\0'
;
}
return
;
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment