diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-07-20 16:30:12 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-07-20 16:30:12 -0400 |
commit | 16e55c7c85fc5771349172d6eb989dddd48c5c25 (patch) | |
tree | c135220fbec75aa9df7026b33f8bc53d23c50534 /src | |
parent | c0ffd7733a735bf2e10834925c63f0039c408649 (diff) |
Fix leak with string VStack objects
Diffstat (limited to 'src')
-rw-r--r-- | src/fcxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fcxml.c b/src/fcxml.c index 7b0b287a..9713e6be 100644 --- a/src/fcxml.c +++ b/src/fcxml.c @@ -836,9 +836,9 @@ FcVStackPopAndDestroy (FcConfigParse *parse) switch (vstack->tag) { case FcVStackNone: break; - case FcVStackString: case FcVStackFamily: break; + case FcVStackString: case FcVStackField: case FcVStackConstant: case FcVStackGlob: |