Skip to content

Commit

Permalink
Merge branch '3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
fukuchi committed Jun 21, 2014
2 parents 5914c0c + 91f87d4 commit d514be9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2014.06.22 Kentaro FUKUCHI <kentaro@fukuchi.org>
* qrencode.c:
- A memory leak bug has been fixed. (Thanks to @win32asm)

2014.02.14 Kentaro FUKUCHI <kentaro@fukuchi.org>
* qrinput.c:
- Minor documentation fix.
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,5 @@ Daniel Dörrhöfer - RLE option, some bug fixes, Travis configuration
Shigeyuki Hirai, Paul Janssens, wangsai, Gavan Fantom, Matthew Baker, Rob Ryan,
Fred Steinhaeuser, Terry Burton, chisj, vlad417, Petr, Hassan Hajji,
Emmanuel Blot, ßlúèÇhîp, Heiko Becker, Gavin Andresen, David Binderman,
ralgozino, Sean McMurray
ralgozino, Sean McMurray, win32asm
- bug report / suggestion
3 changes: 3 additions & 0 deletions qrencode.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,9 @@ __STATIC QRcode *QRcode_encodeMask(QRinput *input, int mask)
goto EXIT;
}
qrcode = QRcode_new(version, width, masked);
if(qrcode == NULL) {
free(masked);
}

EXIT:
QRraw_free(raw);
Expand Down

0 comments on commit d514be9

Please sign in to comment.