Explorar el Código

Fixed braces for patch.

master
Łukasz Sowa hace 11 años
padre
commit
7b4dd4bace
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/xml.c

+ 2
- 1
src/xml.c Ver fichero

@@ -143,8 +143,9 @@ static _Bool xml_string_equals(struct xml_string* a, struct xml_string* b) {
* [PRIVATE]
*/
static uint8_t* xml_string_clone(struct xml_string* s) {
if (!s)
if (!s) {
return 0;
}

uint8_t* clone = calloc(s->length + 1, sizeof(uint8_t));



Cargando…
Cancelar
Guardar