Changeset 232 for branches/samba-3.2.x/source/libsmb/libsmb_path.c
- Timestamp:
- May 27, 2009, 9:09:42 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/libsmb/libsmb_path.c
r133 r232 42 42 43 43 /* 44 * SMBC_urldecode()44 * smbc_urldecode() 45 45 * and urldecode_talloc() (internal fn.) 46 46 * … … 123 123 124 124 int 125 SMBC_urldecode(char *dest,125 smbc_urldecode(char *dest, 126 126 char *src, 127 127 size_t max_dest_len) … … 139 139 140 140 /* 141 * SMBC_urlencode()141 * smbc_urlencode() 142 142 * 143 143 * Convert any characters not specifically allowed in a URL into their %xx … … 147 147 */ 148 148 int 149 SMBC_urlencode(char *dest,149 smbc_urlencode(char *dest, 150 150 char *src, 151 151 int max_dest_len) … … 287 287 288 288 /* Copy the options */ 289 if ( *pp_options != NULL) {289 if (pp_options && *pp_options != NULL) { 290 290 TALLOC_FREE(*pp_options); 291 291 *pp_options = talloc_strdup(ctx, q);
Note:
See TracChangeset
for help on using the changeset viewer.