diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-12-22 16:38:24 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2021-12-22 17:30:04 +0100 |
commit | facd0d56e732141efd367343e175de9b6cd407cf (patch) | |
tree | 64c9655227a6598d62aeb95870d020d0409df912 /src/ogAdmLib.c | |
parent | 41ac15d1007e1e00b0aeacf9dff67a60ed3488b4 (diff) |
#915 remove dead code in ogAdmLib
Remove declarations that are not used anymore in ogAdmLib.
Diffstat (limited to 'src/ogAdmLib.c')
-rw-r--r-- | src/ogAdmLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ogAdmLib.c b/src/ogAdmLib.c index 1706148..d6de4e6 100644 --- a/src/ogAdmLib.c +++ b/src/ogAdmLib.c @@ -60,7 +60,7 @@ char* escaparCadena(char *cadena) buffer = (char*) calloc(1, strlen(cadena)*2); // Toma memoria para el buffer de conversión if (buffer == NULL) { // No hay memoria suficiente para el buffer - return (FALSE); + return NULL; } c=b=0; |