Skip to content

Commit

Permalink
podcast: avoid warnings with older compilers
Browse files Browse the repository at this point in the history
gcc 4.2.1 can't figure out that e and elen are always assigned before
being used, so make it more obvious.
  • Loading branch information
Jonathan Matthew committed Jun 20, 2016
1 parent b9e493f commit 9b24349
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions podcast/rb-podcast-properties-dialog.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ unhtml (const char *str)
p = str;
o = out;
state = NORMAL;
e = entity;
elen = 0;
while (*p != '\0') {
switch (state) {
case TAG:
Expand Down

0 comments on commit 9b24349

Please sign in to comment.