1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

Spelling: [libcdio] freed

This commit is contained in:
Josh Soref 2013-06-20 11:22:40 -04:00
parent 492bbce30b
commit f06cfe776b
3 changed files with 3 additions and 3 deletions

View file

@ -267,7 +267,7 @@ LIBCDIO_DEPRECATED(static const driver_id_t CDIO_MAX_DEVICE_DRIVER, "please use
Eject media in CD drive if there is a routine to do so. Eject media in CD drive if there is a routine to do so.
@param p_cdio the CD object to be acted upon. @param p_cdio the CD object to be acted upon.
If the CD is ejected *p_cdio is free'd and p_cdio set to NULL. If the CD is ejected *p_cdio is freed and p_cdio set to NULL.
*/ */
driver_return_code_t cdio_eject_media (CdIo_t **p_cdio); driver_return_code_t cdio_eject_media (CdIo_t **p_cdio);

View file

@ -92,7 +92,7 @@ extern "C" {
Advances p_udf_direct to the the next directory entry in the Advances p_udf_direct to the the next directory entry in the
pointed to by p_udf_dir. It also returns this as the value. NULL pointed to by p_udf_dir. It also returns this as the value. NULL
is returned on reaching the end-of-file or if an error. Also is returned on reaching the end-of-file or if an error. Also
p_udf_dirent is free'd. If the end of is not reached the caller p_udf_dirent is freed. If the end of is not reached the caller
must call udf_dirent_free() with p_udf_dirent when done with it to must call udf_dirent_free() with p_udf_dirent when done with it to
release resources. release resources.
*/ */

View file

@ -220,7 +220,7 @@ udf_ff_traverse(udf_dirent_t *p_udf_dirent, char *psz_token)
udf_dirent_t * p_udf_dirent3 = udf_dirent_t * p_udf_dirent3 =
udf_ff_traverse(p_udf_dirent2, next_tok); udf_ff_traverse(p_udf_dirent2, next_tok);
/* if p_udf_dirent3 is null p_udf_dirent2 is free'd. */ /* if p_udf_dirent3 is null p_udf_dirent2 is freed. */
return p_udf_dirent3; return p_udf_dirent3;
} }
} }