Ignore:
Timestamp:
May 27, 2009, 9:09:42 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/libsmb/libsmb_path.c

    r133 r232  
    4242
    4343/*
    44  * SMBC_urldecode()
     44 * smbc_urldecode()
    4545 * and urldecode_talloc() (internal fn.)
    4646 *
     
    123123
    124124int
    125 SMBC_urldecode(char *dest,
     125smbc_urldecode(char *dest,
    126126               char *src,
    127127               size_t max_dest_len)
     
    139139
    140140/*
    141  * SMBC_urlencode()
     141 * smbc_urlencode()
    142142 *
    143143 * Convert any characters not specifically allowed in a URL into their %xx
     
    147147 */
    148148int
    149 SMBC_urlencode(char *dest,
     149smbc_urlencode(char *dest,
    150150               char *src,
    151151               int max_dest_len)
     
    287287               
    288288                /* Copy the options */
    289                 if (*pp_options != NULL) {
     289                if (pp_options && *pp_options != NULL) {
    290290                        TALLOC_FREE(*pp_options);
    291291                        *pp_options = talloc_strdup(ctx, q);
Note: See TracChangeset for help on using the changeset viewer.