diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-03-10 10:18:13 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-03-10 11:36:17 -0700 |
commit | eb47b2a8d8764778697ac2fdb342c976cd487ca3 (patch) | |
tree | 99d51da8bb2a1cfc4ef9325258f22394630c28db /load-git.c | |
parent | e8ee701d3573c860b09c2634647e9d00a0bb111c (diff) | |
download | subsurface-eb47b2a8d8764778697ac2fdb342c976cd487ca3.tar.gz |
Get rid of crazy empty tag_list element at the start
So this is totally unrelated to the git repository format, except for
the fact that I noticed it while writing the git saving code.
The subsurface divetag list handling is being stupid, and has a
initial dummy entry at the head of the list for no good reason.
I say "no good reason", because there *is* a reason for it: it allows
code to avoid the special case of empty list and adding entries to
before the first entry etc etc. But that reason is a really *bad*
reason, because it's valid only because people don't understand basic
list manipulation and pointers to pointers.
So get rid of the dummy element, and do things right instead - by
passing a *pointer* to the list, instead of the list. And then when
traversing the list and looking for a place to insert things, don't go
to the next entry - just update the "pointer to pointer" to point to
the address of the next entry. Each entry in a C linked list is no
different than the list itself, so you can use the pointer to the
pointer to the next entry as a pointer to the list.
This is a pet peeve of mine. The real beauty of pointers can never be
understood unless you understand the indirection they allow. People
who grew up with Pascal and were corrupted by that mindset are
mentally stunted. Niklaus Wirth has a lot to answer for!
But never fear. You too can overcome that mental limitation, it just
needs some brain exercise. Reading this patch may help. In particular,
contemplate the new "taglist_add_divetag()".
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'load-git.c')
-rw-r--r-- | load-git.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/load-git.c b/load-git.c index ad4a03294..09e07ded8 100644 --- a/load-git.c +++ b/load-git.c @@ -166,7 +166,7 @@ static void parse_dive_tags(char *line, struct membuffer *str, void *_dive) for (;;) { int taglen = strlen(tag); if (taglen) - taglist_add_tag(dive->tag_list, tag); + taglist_add_tag(&dive->tag_list, tag); len -= taglen; if (!len) return; |