Skip to content

Commit b45ab0d

Browse files
cgzonesallinurl
authored andcommitted
Fix two missing instances of string copy refactoring
These two locations are only enabled via `--enable-debug`.
1 parent e49a3e4 commit b45ab0d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/gholder.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ load_holder_data (GRawData *raw_data, GHolder *h, GModule module, GSort sort) {
656656
#ifdef _DEBUG
657657
clock_t begin = clock ();
658658
double taken;
659-
char *modstr = NULL;
659+
const char *modstr = NULL;
660660
LOG_DEBUG (("== load_holder_data ==\n"));
661661
#endif
662662

@@ -680,6 +680,5 @@ load_holder_data (GRawData *raw_data, GHolder *h, GModule module, GSort sort) {
680680
modstr = get_module_str (module);
681681
taken = (double) (clock () - begin) / CLOCKS_PER_SEC;
682682
LOG_DEBUG (("== %-30s%f\n\n", modstr, taken));
683-
free (modstr);
684683
#endif
685684
}

src/gkmhash.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ parse_raw_data (GModule module) {
14391439
#ifdef _DEBUG
14401440
clock_t begin = clock ();
14411441
double taken;
1442-
char *modstr = NULL;
1442+
const char *modstr = NULL;
14431443
LOG_DEBUG (("== parse_raw_data ==\n"));
14441444
#endif
14451445

@@ -1459,7 +1459,6 @@ parse_raw_data (GModule module) {
14591459
modstr = get_module_str (module);
14601460
taken = (double) (clock () - begin) / CLOCKS_PER_SEC;
14611461
LOG_DEBUG (("== %-30s%f\n\n", modstr, taken));
1462-
free (modstr);
14631462
#endif
14641463

14651464
return raw_data;

0 commit comments

Comments
 (0)