[libvirt] [libvirt-sandbox][PATCH] Avoid infinite loop in gvir_sandbox_config_set_security_opts()

Alex Jia ajia at redhat.com
Fri Mar 15 09:50:21 UTC 2013


On 03/15/2013 05:44 PM, Daniel P. Berrange wrote:
> On Fri, Mar 15, 2013 at 05:32:24PM +0800, Alex Jia wrote:
>> Signed-off-by: Alex Jia<ajia at redhat.com>
>> ---
>>   libvirt-sandbox/libvirt-sandbox-config.c |    3 +++
>>   1 files changed, 3 insertions(+), 0 deletions(-)
>>
>> diff --git a/libvirt-sandbox/libvirt-sandbox-config.c b/libvirt-sandbox/libvirt-sandbox-config.c
>> index 90217f1..f96d417 100644
>> --- a/libvirt-sandbox/libvirt-sandbox-config.c
>> +++ b/libvirt-sandbox/libvirt-sandbox-config.c
>> @@ -1356,10 +1356,13 @@ gboolean gvir_sandbox_config_set_security_opts(GVirSandboxConfig *config,
>>
>>           if (strncmp(name, "label=", 5) == 0) {
>>               gvir_sandbox_config_set_security_label(config, value);
>> +            break;
>>           } else if (g_str_equal(name, "dynamic")) {
>>               gvir_sandbox_config_set_security_dynamic(config, TRUE);
>> +            break;
>>           } else if (g_str_equal(name, "static")) {
>>               gvir_sandbox_config_set_security_dynamic(config, FALSE);
>> +            break;
>>           } else {
>>               g_set_error(error, GVIR_SANDBOX_CONFIG_ERROR, 0,
>>                           "Unknown security option '%s'", name);
> Actually the real flaw is that we're missing  'i++' as the last line of
> the loop body.
>
> Daniel

Ah, yes, I will commit a v2 patch.




More information about the libvir-list mailing list