Changeset f9789d4
- Timestamp:
- 2011-12-20T16:42:17Z (13 years ago)
- Branches:
- master
- Children:
- 68286eb
- Parents:
- 4b53c65
- Location:
- lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/misc.c
r4b53c65 rf9789d4 735 735 char *ret; 736 736 737 if( text == NULL ) 738 return NULL; 739 737 740 if( len == 0 ) 738 741 len = strlen( text ); … … 779 782 } 780 783 781 return ( NULL );782 } 784 return NULL; 785 } -
lib/oauth2.c
r4b53c65 rf9789d4 113 113 { 114 114 } 115 else if( strstr( content_type, "application/json" ) )115 else if( content_type && strstr( content_type, "application/json" ) ) 116 116 { 117 117 atoken = oauth2_json_dumb_get( req->reply_body, "access_token" );
Note: See TracChangeset
for help on using the changeset viewer.