OK, fixed.

---------------------------------------------------------------------------

Tom Lane wrote:
> Bruce Momjian <[EMAIL PROTECTED]> writes:
> > + /*
> > +  * Escape any single quotes or backslashes in locale
> > +  */
> > + static void
> > + escape_locale(char **locale)
> > + {
> > +   int                     len = strlen(*locale),
> > +                           i, j;
> > +   char            *loc_temp = xmalloc(len * 2);
> > +   
> > +   for (i = 0, j = 0; i < len; i++)
> > +   {
> > +           if ((*locale)[i] == '\'' || (*locale)[i] == '\\')
> > +                   loc_temp[j++] = '\\';
> > +           loc_temp[j++] = (*locale)[i];
> > +   }
> > +   *locale = loc_temp;
> > + }
> 
> Surely this is quite broken.  You need to xmalloc one more byte and
> add a '\0'.
> 
>                       regards, tom lane
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
> 
>                http://www.postgresql.org/docs/faqs/FAQ.html
> 

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  [EMAIL PROTECTED]               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

               http://archives.postgresql.org

Reply via email to