Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

fix warning in Xcode4.6 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion NSData+Base64.m
Expand Up @@ -12,7 +12,7 @@ @implementation NSData (Base64Additions)

+ (NSData *)base64DataFromString:(NSString *)string {
unsigned long ixtext, lentext;
unsigned char ch, inbuf[4], outbuf[3];
unsigned char ch, inbuf[4]={}, outbuf[3];
short i, ixinbuf;
Boolean flignore, flendtext = false;
const unsigned char *tempcstring;
Expand Down