]> git.sesse.net Git - vlc/blobdiff - compat/strtoll.c
puzzle: fix error check, do not leak pictures on error
[vlc] / compat / strtoll.c
index 8d2e0bcb8a731a70cc49fd5c8bdc8ed57f62d6a6..5ad79c43688219774c5e48a4c0015653938e9367 100644 (file)
@@ -1,21 +1,21 @@
 /*****************************************************************************
  * strtoll.c: C strtoll() replacement
  *****************************************************************************
- * Copyright © 1998-2008 the VideoLAN project
+ * Copyright © 1998-2010 VLC authors and VideoLAN
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 #ifdef HAVE_CONFIG_H
@@ -25,7 +25,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-long long int strtof( const char *nptr, char **endptr, int base )
+long long int strtoll( const char *nptr, char **endptr, int base )
 {
     long long i_value = 0;
     int sign = 1, newbase = base ? base : 10;