diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-31 12:13:37 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-31 12:13:37 +0000 |
commit | 2147e9f3d570929f45b8ef8a6487094d9919ac27 (patch) | |
tree | a94633536809a059c7d0eb8a6c0f6d271835f016 /src/htsencoding.c | |
parent | bc31ec0da9573d482de24f27241482f50e46e60c (diff) |
Misplaced continue
Diffstat (limited to 'src/htsencoding.c')
-rw-r--r-- | src/htsencoding.c | 4 |
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 */ |