Skip to content

Commit

Permalink
cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouqueau committed Feb 26, 2025
1 parent e7ab753 commit 936842f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/gpac/filters.h
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ typedef enum
GF_PROP_VEC4I = 13,
/*! string property, memory is duplicated when setting the property and managed internally*/
GF_PROP_STRING = 14,
/*! string property, memory is NOT duplicated when setting the property but is then managed (and free) internally.
/*! string property, memory is NOT duplicated when setting the property but is then managed (and freed) internally.
Only used when setting a property, the type then defaults to GF_PROP_STRING
DO NOT USE the associate string field upon return from setting the property, it might have been destroyed*/
GF_PROP_STRING_NO_COPY= 15,
Expand Down
2 changes: 1 addition & 1 deletion share/scripts/jsf/mediaserver/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ globalThis.cat_buffer = cat_buffer;
let httpout = {};
httpout.on_request = (req) =>
{
//use pre-authentifcation done by server
//use pre-authentication done by server
if (req.auth_code!=200) {
req.reply = req.auth_code;
req.send();
Expand Down
2 changes: 1 addition & 1 deletion src/utils/downloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -5534,7 +5534,7 @@ static GF_Err http_send_headers(GF_DownloadSession *sess) {
return e;
}

/*setup authentification*/
/*setup authentication*/
strcpy(pass_buf, "");
sess->creds = gf_user_credentials_find_for_site( sess->dm, sess->server_name, NULL);
if (sess->creds && sess->creds->valid) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ GF_BaseInterface *gf_modules_load(u32 whichplug, u32 InterfaceFamily)
return ifce;

err_exit:
GF_LOG(GF_LOG_DEBUG, GF_LOG_CORE, ("[Core] Load interface %s exit label, freing library...\n", inst->name));
GF_LOG(GF_LOG_DEBUG, GF_LOG_CORE, ("[Core] Load interface %s exit label, freeing library...\n", inst->name));
gf_modules_unload_library(inst);
GF_LOG(GF_LOG_DEBUG, GF_LOG_CORE, ("[Core] Load interface %s EXIT.\n", inst->name));
gf_mx_v(pm->mutex);
Expand Down

0 comments on commit 936842f

Please sign in to comment.