Quellcode durchsuchen

[http] Fix typo in memory allocation

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Kevin Tran vor 12 Jahren
Ursprung
Commit
e01cf6fb3a
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/net/tcp/httpcore.c

+ 1
- 1
src/net/tcp/httpcore.c Datei anzeigen

@@ -664,7 +664,7 @@ static void http_step ( struct http_request *http ) {
664 664
 
665 665
 	/* Allocate dynamic storage */
666 666
 	dynamic = malloc ( sizeof ( *dynamic ) );
667
-	if ( ! malloc ) {
667
+	if ( ! dynamic ) {
668 668
 		rc = -ENOMEM;
669 669
 		goto err_alloc;
670 670
 	}

Laden…
Abbrechen
Speichern