carrier configured GPS_LOCK value missed out

A later change changed how some of the carrier config items are
stored. GPS_LOCK was missed out. Therefore the config values
would only work if it configured in gps.conf. The carrier config
values was lost unintentionally.

Bug: 18754196
Change-Id: I40b9833598a1f227bf765aa422b5752ffc1c9357
diff --git a/loc_api/libloc_api_50001/loc_eng.cpp b/loc_api/libloc_api_50001/loc_eng.cpp
index 92f7d0e..c527e36 100644
--- a/loc_api/libloc_api_50001/loc_eng.cpp
+++ b/loc_api/libloc_api_50001/loc_eng.cpp
@@ -2708,6 +2708,7 @@
         gps_conf_tmp.SUPL_VER = gps_conf.SUPL_VER;
         gps_conf_tmp.LPP_PROFILE = gps_conf.LPP_PROFILE;
         gps_conf_tmp.A_GLONASS_POS_PROTOCOL_SELECT = gps_conf.A_GLONASS_POS_PROTOCOL_SELECT;
+        gps_conf_tmp.GPS_LOCK = gps_conf.GPS_LOCK;
         gps_conf = gps_conf_tmp;
     }