X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fecrash.c;h=ec91a02e4418bc166e9e0289fc5834526b7cf8cc;hb=3367e0fa984b3e5f61b2f75f07fc4e11f824bb73;hp=efe071ca5021a7759dabc59355833c76c0204345;hpb=b2331c2f4ffdb5d3be7d03b7184ccdd3ea3bc43f;p=citadel.git diff --git a/citadel/ecrash.c b/citadel/ecrash.c index efe071ca5..ec91a02e4 100644 --- a/citadel/ecrash.c +++ b/citadel/ecrash.c @@ -12,18 +12,12 @@ * vim: ts=4 * * This program is open source 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 3 of the License, or - * (at your option) any later version. + * it under the terms of the GNU General Public License, version 3. * * 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. - * - * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "sysdep.h" @@ -399,6 +393,7 @@ int eCrash_Init(eCrashParameters *params) DPRINTF(ECRASH_DEBUG_VERY_VERBOSE,"Init Starting params = %p\n", params); + if (params == NULL) return -1; // Allocate our backtrace area gbl_backtraceBuffer = malloc(sizeof(void *) * (params->maxStackDepth+5));