Quellcode durchsuchen

[uri] Fix outdated comment in parse_uri()

Signed-off-by: Marty Connor <mdc@etherboot.org>
tags/v1.0.0-rc1
sobtwmxt vor 15 Jahren
Ursprung
Commit
71e77b8cc2
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/core/uri.c

+ 1
- 1
src/core/uri.c Datei anzeigen

@@ -85,7 +85,7 @@ struct uri * parse_uri ( const char *uri_string ) {
85 85
 		return NULL;
86 86
 	raw = ( ( ( char * ) uri ) + sizeof ( *uri ) );
87 87
 
88
-	/* Zero URI struct and copy in the raw string */
88
+	/* Copy in the raw string */
89 89
 	memcpy ( raw, uri_string, raw_len );
90 90
 
91 91
 	/* Start by chopping off the fragment, if it exists */

Laden…
Abbrechen
Speichern