Try to use smartlist_add_asprintf consistently

(To ensure correctness, in every case, make sure that the temporary
variable is deleted, renamed, or lowered in scope, so we can't have
any bugs related to accidentally relying on the no-longer-filled
variable.)
This commit is contained in:
Nick Mathewson
2012-01-11 13:44:10 -05:00
parent 9c6d913b9e
commit edcc9981d8
11 changed files with 92 additions and 160 deletions
+3
View File
@@ -0,0 +1,3 @@
o Code simplifications and refactoring
- Use the smartlist_add_asprintf alias more consistently
throughout the codebase.