This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
httperf
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
May as well zero out queue data before free() just in case of illegal access afterwards
ahc_fix_select
tedbullock
17 years ago
parent
938c4ed349
commit
056cafdee1
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
httperf/src/lib/queue.c
+ 1
- 0
httperf/src/lib/queue.c
View File
@@ -99,6 +99,7 @@ void
free_queue(struct Queue *q)
{
if (q != NULL) {
empty_queue(q);
free(q);
}
}
Write
Preview
Loading…
Cancel
Save