changeset 49:0ee2ebc4e0f5 trunk

[svn] Sync with upstream. Buffer overflow fix.
author chainsaw
date Thu, 21 Sep 2006 13:50:27 -0700
parents 1021c6ec2ba4
children ea473b7f6afe
files ChangeLog src/adplug/core/rol.cxx
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Sep 21 08:12:16 2006 -0700
+++ b/ChangeLog	Thu Sep 21 13:50:27 2006 -0700
@@ -1,3 +1,12 @@
+2006-09-21 15:12:16 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [96]
+  - remove musicbrainz stuff from rules.mk.in
+  
+
+  Changes:        Modified:
+  +0 -1           trunk/mk/rules.mk.in  
+
+
 2006-09-21 14:08:55 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
   revision [94]
   - redundant metadata has been removed.
--- a/src/adplug/core/rol.cxx	Thu Sep 21 08:12:16 2006 -0700
+++ b/src/adplug/core/rol.cxx	Thu Sep 21 13:50:27 2006 -0700
@@ -1,6 +1,6 @@
 /*
  * Adplug - Replayer for many OPL2/OPL3 audio file formats.
- * Copyright (C) 1999 - 2003 Simon Peter, <dn.tlp@gmx.net>, et al.
+ * Copyright (C) 1999 - 2006 Simon Peter, <dn.tlp@gmx.net>, et al.
  * 
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -95,7 +95,7 @@
 {
     binistream *f = fp.open(filename); if(!f) return false;
 
-    char *fn = new char[filename.length()+9];
+    char *fn = new char[filename.length()+12];
     int i;
     std::string bnk_filename;