Skip to content

Commit

Permalink
Merge pull request #50 from Kenshin53/master
Browse files Browse the repository at this point in the history
Fix crash bug due to Infinite Loop
  • Loading branch information
kcharwood committed Jun 27, 2013
2 parents db9da90 + 7591b4e commit c286635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MMDrawerController/MMDrawerController.m
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil

-(id)initWithCenterViewController:(UIViewController *)centerViewController leftDrawerViewController:(UIViewController *)leftDrawerViewController rightDrawerViewController:(UIViewController *)rightDrawerViewController{
NSParameterAssert(centerViewController);
self = [self init];
self = [super init];
if(self){
[self setCenterViewController:centerViewController];
[self setLeftDrawerViewController:leftDrawerViewController];
Expand Down

0 comments on commit c286635

Please sign in to comment.