| Index: src/trusted/service_runtime/sel_ldr_standard.c
|
| diff --git a/src/trusted/service_runtime/sel_ldr_standard.c b/src/trusted/service_runtime/sel_ldr_standard.c
|
| index a3dd882dd7f7a1d1fd7ca5962a0137f3f8f67c23..907609321982482cbb42d688399aab6e3b8a7b57 100644
|
| --- a/src/trusted/service_runtime/sel_ldr_standard.c
|
| +++ b/src/trusted/service_runtime/sel_ldr_standard.c
|
| @@ -410,8 +410,10 @@ NaClErrorCode NaClAppLoadFile(struct Gio *gp,
|
| return NaClAppLoadFileAslr(gp, nap, NACL_ENABLE_ASLR);
|
| }
|
|
|
| -NaClErrorCode NaClAppLoadFileDynamically(struct NaClApp *nap,
|
| - struct Gio *gio_file) {
|
| +NaClErrorCode NaClAppLoadFileDynamically(
|
| + struct NaClApp *nap,
|
| + struct Gio *gio_file,
|
| + struct NaClValidationMetadata *metadata) {
|
| struct NaClElfImage *image = NULL;
|
| NaClErrorCode ret = LOAD_INTERNAL;
|
|
|
| @@ -419,7 +421,7 @@ NaClErrorCode NaClAppLoadFileDynamically(struct NaClApp *nap,
|
| if (NULL == image || LOAD_OK != ret) {
|
| goto done;
|
| }
|
| - ret = NaClElfImageLoadDynamically(image, nap, gio_file);
|
| + ret = NaClElfImageLoadDynamically(image, nap, gio_file, metadata);
|
| if (LOAD_OK != ret) {
|
| goto done;
|
| }
|
|
|