This website works better with JavaScript.
Home
Help
Register
Sign In
mirrors
/
opentracker
mirror of
/home/gitosis/repositories/opentracker.git
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Remove unnecessary =NULL initialization of static pointers.
erdgeist
11 years ago
parent
65d7d9b89c
commit
877e3cfbb0
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ot_accesslist.c
+1
-1
ot_mutex.c
+1
-1
ot_stats.c
+ 1
- 1
ot_accesslist.c
View File
@ -22,7 +22,7 @@
/* GLOBAL VARIABLES */
#
ifdef WANT_ACCESSLIST
char
*
g_accesslist_filename
=
NULL
;
char
*
g_accesslist_filename
;
static
ot_vector
accesslist
;
static
void
accesslist_reset
(
void
)
{
+ 1
- 1
ot_mutex.c
View File
@ -123,7 +123,7 @@ struct ot_task {
}
;
static
ot_taskid
next_free_taskid
=
1
;
static
struct
ot_task
*
tasklist
=
NULL
;
static
struct
ot_task
*
tasklist
;
static
pthread_mutex_t
tasklist_mutex
;
static
pthread_cond_t
tasklist_being_filled
;
+ 1
- 1
ot_stats.c
View File
@ -82,7 +82,7 @@ union stats_network_node {
}
;
#
ifdef WANT_LOG_NETWORKS
static
stats_network_node
*
stats_network_counters_root
=
NULL
;
static
stats_network_node
*
stats_network_counters_root
;
#
endif
static
int
stat_increase_network_count
(
stats_network_node
*
*
node
,
int
depth
,
uintptr_t
ip
)
{
Write
Preview
Loading…
Cancel
Save