summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-05-31 12:13:37 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-05-31 12:13:37 +0000
commit2147e9f3d570929f45b8ef8a6487094d9919ac27 (patch)
treea94633536809a059c7d0eb8a6c0f6d271835f016 /src
parentbc31ec0da9573d482de24f27241482f50e46e60c (diff)
Misplaced continue
Diffstat (limited to 'src')
-rw-r--r--src/htsencoding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htsencoding.c b/src/htsencoding.c
index 0fa21fc..abdc673 100644
--- a/src/htsencoding.c
+++ b/src/htsencoding.c
@@ -132,9 +132,9 @@ int hts_unescapeEntitiesWithCharset(const char *src, char *dest, const size_t ma
if (len > 0) {
/* new dest position */
j = ampStartDest + len;
+ /* do not copy ; */
+ continue;
}
- /* do not copy ; */
- continue;
}
}
/* numerical entity */