From: Chow Loong Jin <hyperair@debian.org>
Date: Mon, 13 Oct 2014 18:05:00 +0800
Subject: Avoid reusing goto label names

Bug-Debian: https://bugs.debian.org/759237
---
 lib/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs | Bin 38598 -> 38602 bytes
 lib/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs       |   4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs b/lib/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs
index c54c0b5..e8c626f 100644
--- a/lib/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs
+++ b/lib/PdfSharp/PdfSharp.Pdf.Content/CLexer.cs
@@ -382,7 +382,7 @@
                  / /   8 - b i t   c h a r a c t e r s  
                  w h i l e   ( t r u e )  
                  {  
-                 S k i p C h a r :  
+                 S k i p C h a r 2 :  
                      s w i t c h   ( c h )  
                      {  
                          c a s e   ' ( ' :  
@@ -437,7 +437,7 @@
   
                                      c a s e   C h a r s . L F :  
                                          c h   =   S c a n N e x t C h a r ( ) ;  
-                                         g o t o   S k i p C h a r ;  
+                                         g o t o   S k i p C h a r 2 ;  
   
                                      d e f a u l t :  
                                          i f   ( C h a r . I s D i g i t ( c h ) )  
diff --git a/lib/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs b/lib/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs
index d573965..e6d17cc 100644
--- a/lib/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs
+++ b/lib/PdfSharp/PdfSharp.Pdf.IO/Lexer.cs
@@ -608,7 +608,7 @@ namespace PdfSharp.Pdf.IO
         // 8-bit characters
         while (true)
         {
-        SkipChar:
+        SkipChar2:
           switch (ch)
           {
             case '(':
@@ -664,7 +664,7 @@ namespace PdfSharp.Pdf.IO
 
                   case Chars.LF:
                     ch = ScanNextChar();
-                    goto SkipChar;
+                    goto SkipChar2;
 
                   default:
                     if (char.IsDigit(ch))
